Fix mmu for double hires failing on Tetris

This commit is contained in:
Ivan Izaguirre 2019-11-20 22:43:37 +01:00
parent 20d9b2ed10
commit ea5ee95807
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ func (mmu *memoryManager) accessWrite(address uint16) memoryHandler {
return mmu.getPhysicalMainRAM(altPage)
}
hires := mmu.apple2.io.isSoftSwitchActive(ioFlagHiRes)
if false && hires && address >= addressStartHgr && address <= addressLimitHgr {
if hires && address >= addressStartHgr && address <= addressLimitHgr {
return mmu.getPhysicalMainRAM(altPage)
}
}