mirror of https://github.com/PCSX2/pcsx2.git
SaveSlots: Initialise the crc to 0, as well as serialName being an empty string.
This commit is contained in:
parent
73209c520c
commit
0e43803562
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue