Skip to content

Commit c08da5a

Browse files
committed
Fix MEMCARD_SkipEvents
1 parent 8bca987 commit c08da5a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

decompile/General/MEMCARD/MEMCARD_11_SkipEvents.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
void DECOMP_MEMCARD_SkipEvents(void)
44
{
55
// Flush all "previous" Events until everything shows PENDING
6-
while (
7-
(MEMCARD_GetNextSwEvent() != MC_RETURN_PENDING) &&
8-
(MEMCARD_GetNextHwEvent() != MC_RETURN_PENDING)
9-
);
6+
while (DECOMP_MEMCARD_GetNextSwEvent() != MC_RETURN_PENDING);
7+
while (DECOMP_MEMCARD_GetNextHwEvent() != MC_RETURN_PENDING);
108
}

0 commit comments

Comments
 (0)