GBA I/O: Disable open bus behavior on invalid register 06A

This commit is contained in:
Vicki Pfau 2022-01-04 16:43:22 -08:00
parent 85962b632d
commit 361411f646
2 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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: