Skip to content

Commit

Permalink
chore: ⚡ adiciona checagem da versão correta
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasvmx committed Nov 8, 2022
1 parent f607d0b commit f5b1ebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wzhack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ unsigned short WzHack_GetWarzoneVersion(const char *wz_filename)
// Compila o número de versão para um único número
iversion = (major * 100) + (minor * 10) + patch;

if((iversion > WZ_427) || (iversion < WZ_239))
if((iversion > WZ_431) || (iversion < WZ_239))
iversion = WZ_UNKNOWN;

if (buf)
Expand Down

0 comments on commit f5b1ebd

Please sign in to comment.