GBHawk:set initial HRAM to 0, this provides consistent sync when clearing RAM on console, where as 0xFF does not

This commit is contained in:
alyosha-tas 2020-12-22 20:20:00 -05:00
parent 60d2bfa85c
commit 28c35a6274
1 changed files with 1 additions and 6 deletions

View File

@ -228,12 +228,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
for (int i = 0; i < ZP_RAM.Length; i++)
{
ZP_RAM[i] = 0xFF;
}
for (int i = 0; i < ZP_RAM.Length; i++)
{
ZP_RAM[i] = 0xFF;
ZP_RAM[i] = 0;
}
if (is_GBC)