mirror of https://github.com/mgba-emu/mgba.git
GBA SIO: Fix unconnected SIOCNT for multi mode (fixes #1105)
This commit is contained in:
parent
2c09e6318b
commit
e748d8fe77
1
CHANGES
1
CHANGES
|
@ -37,6 +37,7 @@ Bugfixes:
|
||||||
- Core: Fix audio sync breaking when interrupted
|
- Core: Fix audio sync breaking when interrupted
|
||||||
- Qt: Improve FPS timer stability
|
- Qt: Improve FPS timer stability
|
||||||
- GBA Serialize: Fix loading channel 3 volume (fixes mgba.io/i/1107)
|
- 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:
|
Misc:
|
||||||
- GBA Timer: Use global cycles for timers
|
- GBA Timer: Use global cycles for timers
|
||||||
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
||||||
|
|
|
@ -163,6 +163,9 @@ void GBASIOWriteSIOCNT(struct GBASIO* sio, uint16_t value) {
|
||||||
value &= ~0x0080;
|
value &= ~0x0080;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case SIO_MULTI:
|
||||||
|
value |= 0xC;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
// TODO
|
// TODO
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue