GBA Hardware: Fix loading states unconditionally overwriting GPIO memory

This commit is contained in:
Vicki Pfau 2024-12-11 16:24:51 -08:00
parent 6c2da7b621
commit 9a1d2442a3
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
0.10.5: (Future)
Other fixes:
- GBA Hardware: Fix loading states unconditionally overwriting GPIO memory
0.10.4: (2024-12-07)
Emulation fixes:
- GB Audio: Fix audio envelope timing resetting too often (fixes mgba.io/i/3164)

View File

@ -498,7 +498,7 @@ void GBAHardwareDeserialize(struct GBACartridgeHardware* hw, const struct GBASer
LOAD_16(hw->direction, 0, &state->hw.pinDirection);
hw->devices = state->hw.devices;
if (hw->gpioBase) {
if ((hw->devices & (HW_RTC | HW_RUMBLE | HW_LIGHT_SENSOR | HW_GYRO | HW_TILT)) && hw->gpioBase) {
if (hw->readWrite) {
STORE_16(hw->pinState, 0, hw->gpioBase);
STORE_16(hw->direction, 2, hw->gpioBase);