From 0e8b3605fa01dfe8d29be2ccd7736fa2c26b5c0d Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 2 Apr 2012 03:02:49 +0000 Subject: [PATCH] 2600-fix mapper FA? --- BizHawk.Emulation/Consoles/Atari/2600/Mappers/mFA.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mFA.cs b/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mFA.cs index 3ac83d5b9a..e5bfa8712b 100644 --- a/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mFA.cs +++ b/BizHawk.Emulation/Consoles/Atari/2600/Mappers/mFA.cs @@ -40,7 +40,7 @@ namespace BizHawk.Emulation.Consoles.Atari._2600 Address(addr); if (addr < 0x1000) base.WriteMemory(addr, value); - if (addr < 0x10FF) + else if (addr < 0x1100) aux_ram[addr & 0xFF] = value; }