Remove unneeded semicolon

This commit is contained in:
Sylvain
2022-11-17 10:43:45 +01:00
parent 60c6cd554d
commit ddad901c0d
10 changed files with 14 additions and 13 deletions

View File

@@ -28,8 +28,10 @@
__attribute__((weak))
void reset_IOP() {
SifInitRpc(0);
while(!SifIopReset(NULL, 0)){};
while(!SifIopSync()){};
while(!SifIopReset(NULL, 0)) {
}
while(!SifIopSync()){
}
}
static void prepare_IOP()