Turn "save from newer version" back into an error, until an improved method of checking compatibility can be devised

This commit is contained in:
jacksonmj 2015-10-02 20:59:56 +01:00
parent cd3d54d3bd
commit 1bd861719f

View File

@ -464,8 +464,10 @@ void GameSave::readOPS(char * data, int dataLength)
//From newer version
if (savedVersion > SAVE_VERSION)
{
fromNewerVersion = true;
//throw ParseException(ParseException::WrongVersion, "Save from newer version");
throw ParseException(ParseException::WrongVersion, "Save from newer version");
}
//Incompatible cell size
if (inputData[5] > CELL)