From 0e43803562e870e5e90efabef4615197aa898b0c Mon Sep 17 00:00:00 2001 From: Shanoah Alkire Date: Tue, 11 Dec 2018 23:34:24 -0800 Subject: [PATCH] SaveSlots: Initialise the crc to 0, as well as serialName being an empty string. --- pcsx2/gui/Saveslots.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/gui/Saveslots.h b/pcsx2/gui/Saveslots.h index 7f422056cd..42d366447e 100644 --- a/pcsx2/gui/Saveslots.h +++ b/pcsx2/gui/Saveslots.h @@ -53,7 +53,7 @@ public: slot_num = 0; empty = true; updated = wxInvalidDateTime; - crc = ElfCRC; + crc = 0; serialName = L""; menu_update = false; invalid_cache = true; @@ -64,8 +64,8 @@ public: slot_num = i; empty = true; updated = wxInvalidDateTime; - crc = ElfCRC; - serialName = DiscSerial; + crc = 0; + serialName = L""; menu_update = false; invalid_cache = true; }