From ad66699b23db111a0e5de3eb8101b8691a91f530 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 31 Oct 2017 11:41:50 -0400 Subject: [PATCH] Update Mapper116.cs Fixes Kart Fighter Not sure why I added that condition in the first place, it doesn't break Somari. --- .../Consoles/Nintendo/NES/Boards/Mapper116.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper116.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper116.cs index 243cd695b7..25f1526385 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper116.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper116.cs @@ -146,7 +146,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES void WriteModeControl(int addr, byte value) { - if (((addr & 0x4100) != 0x4100) || addr>=0x4200) return; + if ((addr & 0x4100) != 0x4100) return; mode = value & 3; bool chr_base = value.Bit(2);