Skip to content

Commit

Permalink
bump serialize version to V42
Browse files Browse the repository at this point in the history
  • Loading branch information
flyinghead committed Sep 22, 2023
1 parent 6fa5e3f commit 5f6ff41
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/serialize.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ class SerializeBase
V39,
V40,
V41,
Current = V41,
V42,
Current = V42,

Next = Current + 1,
};
Expand Down Expand Up @@ -102,7 +103,7 @@ class Deserializer : public SerializeBase
if (_version > Current)
throw Exception("Version too recent");

if(_version >= V41 && settings.platform.isConsole())
if(_version >= V42 && settings.platform.isConsole())
{
u32 ramSize;
deserialize(ramSize);
Expand Down

0 comments on commit 5f6ff41

Please sign in to comment.