GBA SIO: Fix MULTI mode SIOCNT bit 7 writes on secondary GBAs (fixes #3110)

This commit is contained in:
Vicki Pfau 2024-01-21 17:42:55 -08:00
parent a2b7b19d89
commit 858c94e5ee
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,6 @@
0.10.4: (Future)
Emulation fixes:
- GBA SIO: Fix MULTI mode SIOCNT bit 7 writes on secondary GBAs (fixes mgba.io/i/3110)
Misc:
- Vita: Add imc0 and xmc0 mount point support

View File

@ -213,8 +213,6 @@ static uint16_t GBASIOLockstepNodeMultiWriteRegister(struct GBASIODriver* driver
mTimingDeschedule(&driver->p->p->timing, &node->event);
}
mTimingSchedule(&driver->p->p->timing, &node->event, 0);
} else {
value &= ~0x0080;
}
}
value &= 0xFF83;