mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-25 15:19:53 -06:00
init savemem to 0xFF instead of 0x00.
This commit is contained in:
@ -141,7 +141,7 @@ void LoadSave(const char* path, u32 type)
|
|||||||
if (SRAMLength)
|
if (SRAMLength)
|
||||||
{
|
{
|
||||||
SRAM = new u8[SRAMLength];
|
SRAM = new u8[SRAMLength];
|
||||||
memset(SRAM, 0, SRAMLength);
|
memset(SRAM, 0xFF, SRAMLength);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user