From 4dbab90b877a8e87871bfb83ba926ef3da361df9 Mon Sep 17 00:00:00 2001 From: beirich Date: Sun, 9 Sep 2012 03:29:40 +0000 Subject: [PATCH] gen: remove old, unneeded hack. Fixes Quackshot. --- BizHawk.Emulation/Consoles/Sega/Genesis/IO.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Sega/Genesis/IO.cs b/BizHawk.Emulation/Consoles/Sega/Genesis/IO.cs index 625b12937e..df5d1980f3 100644 --- a/BizHawk.Emulation/Consoles/Sega/Genesis/IO.cs +++ b/BizHawk.Emulation/Consoles/Sega/Genesis/IO.cs @@ -27,7 +27,7 @@ { offset >>= 1; offset &= 0x0F; - if (offset >1 ) + if (offset > 1) Log.Note("CPU", "^^^ IO Read {0}: 00", offset); switch (offset) { @@ -55,7 +55,7 @@ case 0x04: return IOPorts[0].Control; case 0x05: return IOPorts[1].Control; - case 0x06: return 0xFF;// return IOPorts[2].Control; //TODO hack? returning FF fixes revenge of shinobi and strider. investigate later. + case 0x06: return IOPorts[2].Control; case 0x07: return IOPorts[0].TxData; case 0x08: return IOPorts[0].RxData;