GBHawk: update RAM state for GBA mode

This commit is contained in:
alyosha-tas 2020-12-24 19:45:44 -05:00
parent 42fc895e12
commit 515f5cf9b0
1 changed files with 3 additions and 2 deletions

View File

@ -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