mirror of https://github.com/mgba-emu/mgba.git
GB Memory: Fix HDMA5 value after DMA completes
This commit is contained in:
parent
9d54e242e3
commit
2bd8dd2fa2
1
CHANGES
1
CHANGES
|
@ -41,6 +41,7 @@ Bugfixes:
|
||||||
- Qt: Fix Apply button for key and controller configurations
|
- Qt: Fix Apply button for key and controller configurations
|
||||||
- GB Video: Initialize LCDC in renderer
|
- GB Video: Initialize LCDC in renderer
|
||||||
- GBA I/O: Mask off WAITCNT bits that cannot be written
|
- GBA I/O: Mask off WAITCNT bits that cannot be written
|
||||||
|
- GB Memory: Fix HDMA5 value after DMA completes
|
||||||
Misc:
|
Misc:
|
||||||
- SDL: Remove scancode key input
|
- SDL: Remove scancode key input
|
||||||
- GBA Video: Clean up unused timers
|
- GBA Video: Clean up unused timers
|
||||||
|
|
|
@ -437,7 +437,7 @@ void _GBMemoryHDMAService(struct GB* gb) {
|
||||||
gb->memory.isHdma = false;
|
gb->memory.isHdma = false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
gb->memory.io[REG_HDMA5] |= 0x80;
|
gb->memory.io[REG_HDMA5] = 0xFF;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue