1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

Serialization version bump

This commit is contained in:
Ivan Savenko 2023-01-18 23:57:49 +02:00
parent 47c1803c42
commit 5a9ffb8e95
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ int32_t CCreature::getIconIndex() const
std::string CCreature::getJsonKey() const
{
return modScope + ':' + identifier;;
return modScope + ':' + identifier;
}
void CCreature::registerIcons(const IconRegistar & cb) const

View File

@ -14,8 +14,8 @@
VCMI_LIB_NAMESPACE_BEGIN
const ui32 SERIALIZATION_VERSION = 810;
const ui32 MINIMAL_SERIALIZATION_VERSION = 810;
const ui32 SERIALIZATION_VERSION = 812;
const ui32 MINIMAL_SERIALIZATION_VERSION = 812;
const std::string SAVEGAME_MAGIC = "VCMISVG";
class CHero;