mirror of https://github.com/mgba-emu/mgba.git
GBA SIO: Fix MULTI mode SIOCNT bit 7 writes on secondary GBAs (fixes #3110)
This commit is contained in:
parent
a2b7b19d89
commit
858c94e5ee
2
CHANGES
2
CHANGES
|
@ -1,4 +1,6 @@
|
||||||
0.10.4: (Future)
|
0.10.4: (Future)
|
||||||
|
Emulation fixes:
|
||||||
|
- GBA SIO: Fix MULTI mode SIOCNT bit 7 writes on secondary GBAs (fixes mgba.io/i/3110)
|
||||||
Misc:
|
Misc:
|
||||||
- Vita: Add imc0 and xmc0 mount point support
|
- Vita: Add imc0 and xmc0 mount point support
|
||||||
|
|
||||||
|
|
|
@ -213,8 +213,6 @@ static uint16_t GBASIOLockstepNodeMultiWriteRegister(struct GBASIODriver* driver
|
||||||
mTimingDeschedule(&driver->p->p->timing, &node->event);
|
mTimingDeschedule(&driver->p->p->timing, &node->event);
|
||||||
}
|
}
|
||||||
mTimingSchedule(&driver->p->p->timing, &node->event, 0);
|
mTimingSchedule(&driver->p->p->timing, &node->event, 0);
|
||||||
} else {
|
|
||||||
value &= ~0x0080;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
value &= 0xFF83;
|
value &= 0xFF83;
|
||||||
|
|
Loading…
Reference in New Issue