sram bank is not 0xA000 large, oops

This commit is contained in:
CasualPokePlayer 2021-11-21 20:07:02 -08:00
parent 307f6f262e
commit f9aa6101e0
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
else if (address < 0xC000u) // sram (may be banked)
{
var bank = LibGambatte.gambatte_getsrambank(GambatteState); // this will return 0 in case there is only one bank
address += (uint)(bank * 0xA000);
address += (uint)(bank * 0x2000);
address -= 0xA000u;
MemoryCallbacks.CallMemoryCallbacks(address, 0, rawFlags, "SRAM");
}