mirror of
https://github.com/yquake2/rogue.git
synced 2025-04-19 08:41:27 +00:00
Fix a missmerge, save_ver is supported since version 4 and not 3.
This commit is contained in:
parent
dc16877ae2
commit
eaaf6c43d4
1 changed files with 2 additions and 2 deletions
|
@ -736,7 +736,7 @@ ReadClient(FILE *f, gclient_t *client, short save_ver)
|
|||
}
|
||||
}
|
||||
|
||||
if (save_ver < 3)
|
||||
if (save_ver < 4)
|
||||
{
|
||||
InitClientResp(client);
|
||||
}
|
||||
|
@ -818,7 +818,7 @@ ReadGame(const char *filename)
|
|||
char str_game[32];
|
||||
char str_os[32];
|
||||
char str_arch[32];
|
||||
short save_ver;
|
||||
short save_ver = 0;
|
||||
|
||||
gi.FreeTags(TAG_GAME);
|
||||
|
||||
|
|
Loading…
Reference in a new issue