1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

* restored 0.74 savegames compatibility (for easier reproducing reported issues)

* Fixed #184 and #189
* minor fixes
This commit is contained in:
Michał W. Urbańczyk
2009-11-13 19:04:36 +00:00
parent f99c4d3c66
commit a6f61e33bd
12 changed files with 81 additions and 55 deletions

View File

@@ -253,7 +253,7 @@ CLoadFile::CLoadFile( const std::string &fname )
}
*this >> myVersion;
if(myVersion != version)
if(myVersion > version || myVersion < 110)
{
tlog1 << "Wrong save format! (file " << fname << " )\n";
delete sfile;