Fix a missmerge, save_ver is supported since version 4 and not 3.

This commit is contained in:
Yamagi Burmeister 2019-02-05 09:04:52 +01:00
parent dc16877ae2
commit eaaf6c43d4

View file

@ -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);