all repos — mgba @ 830e52fa67803d3d4506948d4c8888e1e8eea586

mGBA Game Boy Advance Emulator

GBA SIO: Prevent writing read-only multiplayer bits
Vicki Pfau vi@endrift.com
Sun, 17 Feb 2019 22:13:40 -0800
commit

830e52fa67803d3d4506948d4c8888e1e8eea586

parent

8a57f9489a6a91828da58b09de56daa49d301d24

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

jump to
M CHANGESCHANGES

@@ -7,6 +7,7 @@ - GBA Memory: Fix OOB ROM reads showing up as AGBPrint memory

- GB Serialize: Fix loading states with negative pixel x (fixes mgba.io/i/1293) - Qt: Fix audio context holding onto closed game controller - Switch: Fix gyroscope orientation (fixes mgba.io/i/1300) + - GBA SIO: Prevent writing read-only multiplayer bits Misc: - GBA Video: Improve sprite cycle counting (fixes mgba.io/i/1274)
M src/gba/sio.csrc/gba/sio.c

@@ -164,6 +164,7 @@ value &= ~0x0080;

} break; case SIO_MULTI: + value &= 0xFF83; value |= 0xC; break; default: