From 515f5cf9b057c319248d7b6cf80781aeba7458cd Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Thu, 24 Dec 2020 19:45:44 -0500 Subject: [PATCH] GBHawk: update RAM state for GBA mode --- .../Consoles/Nintendo/GBHawk/GBHawk.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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