mirror of https://github.com/mgba-emu/mgba.git
[SIO] Fix a -Wswitch warning out of lockstep.c
The compiler was complaining of unhandled branches, but a new `default` case solves that.
This commit is contained in:
parent
f696619b11
commit
85e975c7af
|
@ -462,6 +462,8 @@ static void _GBASIOLockstepNodeProcessEvents(struct mTiming* timing, void* user,
|
||||||
node->eventDiff = 0;
|
node->eventDiff = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
} else if (node->nextEvent <= 0) {
|
} else if (node->nextEvent <= 0) {
|
||||||
if (!node->id) {
|
if (!node->id) {
|
||||||
|
|
Loading…
Reference in New Issue