From 51826c4c179db495e9a3bcccbfc36f50a25bc2e2 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sat, 19 Nov 2022 20:44:55 -0800 Subject: [PATCH] Fix wrong MBC5 mapper being given a battery 0x1A is MBC5+RAM, 0x1B is MBC5+RAM+BATTERY --- .../Consoles/Nintendo/GBHawk/GBHawk.cs | 4 ++-- 1 file changed, 2 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 411b53c989..38a45974f4 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs @@ -531,8 +531,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk case 0x12: mapper = new MapperMBC3(); mppr = "MBC3"; break; case 0x13: mapper = new MapperMBC3(); mppr = "MBC3"; has_bat = true; break; case 0x19: mapper = new MapperMBC5(); mppr = "MBC5"; break; - case 0x1A: mapper = new MapperMBC5(); mppr = "MBC5"; has_bat = true; break; - case 0x1B: mapper = new MapperMBC5(); mppr = "MBC5"; break; + case 0x1A: mapper = new MapperMBC5(); mppr = "MBC5"; break; + case 0x1B: mapper = new MapperMBC5(); mppr = "MBC5"; has_bat = true; break; case 0x1C: mapper = new MapperMBC5(); mppr = "MBC5"; break; case 0x1D: mapper = new MapperMBC5(); mppr = "MBC5"; break; case 0x1E: mapper = new MapperMBC5(); mppr = "MBC5"; has_bat = true; break;