From 9237b894f966af15570bad9c9f0aa653bb795b70 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 9 Aug 2015 15:08:36 -0400 Subject: [PATCH] Mapper 235 - oops, forgot about mirroring --- .../Consoles/Nintendo/NES/Boards/Mapper235.cs | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper235.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper235.cs index 5d191bf6db..e112589e36 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper235.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper235.cs @@ -67,13 +67,20 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES { if ((_reg & 0x400) > 0) { - // TODO - SetMirrorType(EMirrorType.Horizontal); // TODO: which one is which? + SetMirrorType(EMirrorType.Horizontal); } else { - // TODO - SetMirrorType(EMirrorType.Vertical); + int type = ((_reg >> 13) & 1) ^ 1; + + if (type == 0) + { + SetMirrorType(EMirrorType.Horizontal); + } + else + { + SetMirrorType(EMirrorType.Vertical); + } } } }