mirror of
https://github.com/ivanizag/izapple2.git
synced 2025-02-19 00:31:00 +00:00
Fix mmu for double hires failing on Tetris
This commit is contained in:
parent
20d9b2ed10
commit
ea5ee95807
@ -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)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user