From 4202cbe7e89d064eadf5ecc5ef43a44a9036a0d9 Mon Sep 17 00:00:00 2001 From: lightningterror Date: Sun, 21 Apr 2019 00:50:18 +0200 Subject: [PATCH] pcsx2 savestates: Bump savestate version, required for the previous TAS PR merge. Attention! Older savestates will be incompatible so please use a previous older dev build (such as dev 3043) to save your progress on memory cards instead! --- pcsx2/SaveState.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/SaveState.h b/pcsx2/SaveState.h index 3bd163f9bd..40abba50f3 100644 --- a/pcsx2/SaveState.h +++ b/pcsx2/SaveState.h @@ -24,7 +24,7 @@ // the lower 16 bit value. IF the change is breaking of all compatibility with old // states, increment the upper 16 bit value, and clear the lower 16 bits to 0. -static const u32 g_SaveVersion = (0x9A0D << 16) | 0x0000; +static const u32 g_SaveVersion = (0x9A0E << 16) | 0x0000; // this function is meant to be used in the place of GSfreeze, and provides a safe layer // between the GS saving function and the MTGS's needs. :)