We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bca987 commit c08da5aCopy full SHA for c08da5a
decompile/General/MEMCARD/MEMCARD_11_SkipEvents.c
@@ -3,8 +3,6 @@
3
void DECOMP_MEMCARD_SkipEvents(void)
4
{
5
// Flush all "previous" Events until everything shows PENDING
6
- while (
7
- (MEMCARD_GetNextSwEvent() != MC_RETURN_PENDING) &&
8
- (MEMCARD_GetNextHwEvent() != MC_RETURN_PENDING)
9
- );
+ while (DECOMP_MEMCARD_GetNextSwEvent() != MC_RETURN_PENDING);
+ while (DECOMP_MEMCARD_GetNextHwEvent() != MC_RETURN_PENDING);
10
}
0 commit comments