Przeglądaj źródła

Serialization version bump

Ivan Savenko 2 lat temu
rodzic
commit
5a9ffb8e95
2 zmienionych plików z 3 dodań i 3 usunięć
  1. 1 1
      lib/CCreatureHandler.cpp
  2. 2 2
      lib/serializer/CSerializer.h

+ 1 - 1
lib/CCreatureHandler.cpp

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

+ 2 - 2
lib/serializer/CSerializer.h

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