mirror of https://github.com/mgba-emu/mgba.git
GB Memory: Fix HDMA5 value after DMA completes
This commit is contained in:
parent
c63b1f2704
commit
070064dd78
1
CHANGES
1
CHANGES
|
@ -30,6 +30,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:
|
||||||
- PSP2: Improved controller rumble
|
- PSP2: Improved controller rumble
|
||||||
- GB, GBA: Prevent loading null ROMs
|
- GB, GBA: Prevent loading null ROMs
|
||||||
|
|
|
@ -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