Skip to content

Commit

Permalink
Change more symbols for new calico replacements
Browse files Browse the repository at this point in the history
  • Loading branch information
lifehackerhansol committed Nov 12, 2024
1 parent 923fd26 commit 428010e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arm9/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ int main(int argc, char **argv)
printf("Otherwise press start to exit.\n\n");

while(true) {
swiWaitForVBlank();
threadWaitForVBlank();
scanKeys();
if(keysDown() & KEY_START) return 0;
if(keysDown() & KEY_A) {
Expand All @@ -367,7 +367,7 @@ int main(int argc, char **argv)
}
}

if(isDSiMode()) {
if(systemIsTwlMode()) {
printf("This app only runs in DS-mode.\n");
goto end;
}
Expand All @@ -376,7 +376,7 @@ int main(int argc, char **argv)
end:
printf("Press START to exit.\n");
while(pmMainLoop()) {
swiWaitForVBlank();
threadWaitForVBlank();
scanKeys();
if(keysDown() & KEY_START) break;
}
Expand Down

0 comments on commit 428010e

Please sign in to comment.