2600-fix mapper FA?

This commit is contained in:
zeromus 2012-04-02 03:02:49 +00:00
parent 73b55dbf2e
commit 0e8b3605fa
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}