mirror of https://github.com/mgba-emu/mgba.git
GBA Hardware: Fix loading states unconditionally overwriting GPIO memory
This commit is contained in:
parent
6c2da7b621
commit
9a1d2442a3
4
CHANGES
4
CHANGES
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue