all repos — mgba @ e748d8fe771c6802215bd43710b3d0f1d81994dc

mGBA Game Boy Advance Emulator

GBA SIO: Fix unconnected SIOCNT for multi mode (fixes #1105)
Vicki Pfau vi@endrift.com
Sun, 24 Jun 2018 08:17:00 -0700
commit

e748d8fe771c6802215bd43710b3d0f1d81994dc

parent

2c09e6318b9b83afc15b1fb1a80bdf6e332ec946

2 files changed, 4 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -37,6 +37,7 @@ - GBA Video: Start timing mid-scanline when skipping BIOS

- Core: Fix audio sync breaking when interrupted - Qt: Improve FPS timer stability - GBA Serialize: Fix loading channel 3 volume (fixes mgba.io/i/1107) + - GBA SIO: Fix unconnected SIOCNT for multi mode (fixes mgba.io/i/1105) Misc: - GBA Timer: Use global cycles for timers - GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
M src/gba/sio.csrc/gba/sio.c

@@ -163,6 +163,9 @@ }

value &= ~0x0080; } break; + case SIO_MULTI: + value |= 0xC; + break; default: // TODO break;