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;
|
slot_num = 0;
|
||||||
empty = true;
|
empty = true;
|
||||||
updated = wxInvalidDateTime;
|
updated = wxInvalidDateTime;
|
||||||
crc = ElfCRC;
|
crc = 0;
|
||||||
serialName = L"";
|
serialName = L"";
|
||||||
menu_update = false;
|
menu_update = false;
|
||||||
invalid_cache = true;
|
invalid_cache = true;
|
||||||
|
@ -64,8 +64,8 @@ public:
|
||||||
slot_num = i;
|
slot_num = i;
|
||||||
empty = true;
|
empty = true;
|
||||||
updated = wxInvalidDateTime;
|
updated = wxInvalidDateTime;
|
||||||
crc = ElfCRC;
|
crc = 0;
|
||||||
serialName = DiscSerial;
|
serialName = L"";
|
||||||
menu_update = false;
|
menu_update = false;
|
||||||
invalid_cache = true;
|
invalid_cache = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue