mirror of https://github.com/mgba-emu/mgba.git
GBA I/O: Disable open bus behavior on invalid register 06A
This commit is contained in:
parent
85962b632d
commit
361411f646
2
CHANGES
2
CHANGES
|
@ -1,4 +1,6 @@
|
|||
0.9.4: (Future)
|
||||
Emulation fixes:
|
||||
- GBA I/O: Disable open bus behavior on invalid register 06A
|
||||
Other fixes:
|
||||
- FFmpeg: Fix crash when encoding audio with some containers
|
||||
|
||||
|
|
|
@ -920,6 +920,7 @@ uint16_t GBAIORead(struct GBA* gba, uint32_t address) {
|
|||
// Handled transparently by registers
|
||||
break;
|
||||
case 0x066:
|
||||
case 0x06A:
|
||||
case 0x06E:
|
||||
case 0x076:
|
||||
case 0x07A:
|
||||
|
|
Loading…
Reference in New Issue