From 6e214a6059352d0a54b2dcbfbbd4c5c24b4d9e9a Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 1 Nov 2012 03:26:24 +0000 Subject: [PATCH] Atari 2600 - fix mapper E7 --- BizHawk.Emulation/Consoles/Atari/2600/Mappers/mE7.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mE7.cs b/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mE7.cs index a777fce534..db74fc619e 100644 --- a/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mE7.cs +++ b/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mE7.cs @@ -74,9 +74,9 @@ namespace BizHawk.Emulation.Consoles.Atari._2600 } else if (addr < 0x2000) { - addr -= 0x1A00; - addr &= 0x5FF; - int offset = core.rom.Length - 0x0600; + addr -= 0x1800; + addr &= 0x7FF; + int offset = core.rom.Length - 0x0800; return core.rom[offset + addr]; //Fixed to last 1.5K } else