[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:
Fletcher Porter 2021-10-15 00:00:10 -07:00 committed by Vicki Pfau
parent f696619b11
commit 85e975c7af
1 changed files with 2 additions and 0 deletions

View File

@ -462,6 +462,8 @@ static void _GBASIOLockstepNodeProcessEvents(struct mTiming* timing, void* user,
node->eventDiff = 0;
}
break;
default:
break;
}
} else if (node->nextEvent <= 0) {
if (!node->id) {