mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -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)
|
||||
{
|
||||
SRAM = new u8[SRAMLength];
|
||||
memset(SRAM, 0, SRAMLength);
|
||||
memset(SRAM, 0xFF, SRAMLength);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user