mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
q2 saved games actually use a different ident.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1952 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
cea6126658
commit
d1051b535a
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ void M_ScanSaves (void)
|
||||||
{
|
{
|
||||||
VFS_GETS(f, line, sizeof(line));
|
VFS_GETS(f, line, sizeof(line));
|
||||||
version = atoi(line);
|
version = atoi(line);
|
||||||
if (version != FTESAVEGAME_VERSION)
|
if (version < FTESAVEGAME_VERSION || version >= FTESAVEGAME_VERSION+GT_MAX)
|
||||||
{
|
{
|
||||||
Q_strncpyz (m_filenames[i], "Incompatable version", sizeof(m_filenames[i]));
|
Q_strncpyz (m_filenames[i], "Incompatable version", sizeof(m_filenames[i]));
|
||||||
VFS_CLOSE (f);
|
VFS_CLOSE (f);
|
||||||
|
|
Loading…
Reference in a new issue