diff --git a/src/p_user.cpp b/src/p_user.cpp index 15c5055c9..1eb838176 100644 --- a/src/p_user.cpp +++ b/src/p_user.cpp @@ -3043,7 +3043,7 @@ void player_t::Serialize (FArchive &arc) WeaponState = ((cheats >> 14) & 1) | ((cheats & (0x37 << 24)) >> (24 - 1)); cheats &= ~((1 << 14) | (0x37 << 24)); } - if (SaveVersion < 4526) + if (SaveVersion < 4527) { BYTE oldWeaponState; arc << oldWeaponState; diff --git a/src/version.h b/src/version.h index c1288f02f..682c5165e 100644 --- a/src/version.h +++ b/src/version.h @@ -76,7 +76,7 @@ const char *GetVersionString(); // Use 4500 as the base git save version, since it's higher than the // SVN revision ever got. -#define SAVEVER 4526 +#define SAVEVER 4527 #define SAVEVERSTRINGIFY2(x) #x #define SAVEVERSTRINGIFY(x) SAVEVERSTRINGIFY2(x)