diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs index 24142aedd3..ef707c4aa5 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs @@ -235,10 +235,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk { if (_syncSettings.GBACGB) { - // on GBA, initial RAM is mostly random, choosing 0xFF as oracle of ages / seasons check for 0 which is unlikely to be true + // on GBA, initial RAM is mostly random, choosing 0 allows for stable clear and hotswap for games that encounter + // uninitialized RAM for (int i = 0; i < RAM.Length; i++) { - RAM[i] = 0xFF; + RAM[i] = 0; } } else