Skip to content

Commit

Permalink
little things i forgot
Browse files Browse the repository at this point in the history
  • Loading branch information
FlameAlt53 authored Apr 4, 2019
1 parent 4965ed3 commit 5c1982f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ int main(int argc, char **argv) {
if((access(bootA.c_str(), F_OK) == 0)) {
runNdsFile(bootA.c_str(), 0, NULL, false);
} else {
printf("Error:\n%s wasn't found!", bootA.c_str());
printf("Error:\n%s \nwasn't found!", bootA.c_str());
stop();
}
} else if (pressed & KEY_B) {
Expand Down Expand Up @@ -130,7 +130,7 @@ int main(int argc, char **argv) {
if((access(bootL.c_str(), F_OK) == 0)) {
runNdsFile(bootL.c_str(), 0, NULL, false);
} else {
printf("Error:\n %s \nwasn't found!", bootL.c_str());
printf("Error:\n%s \nwasn't found!", bootL.c_str());
stop();
}
} else if (pressed & KEY_R) {
Expand All @@ -151,14 +151,14 @@ int main(int argc, char **argv) {
if((access(bootLeft.c_str(), F_OK) == 0)) {
runNdsFile(bootLeft.c_str(), 0, NULL, false);
} else {
printf("Error:\n%s wasn't found!", bootLeft.c_str());
printf("Error:\n%s \nwasn't found!", bootLeft.c_str());
stop();
}
} else if (pressed & KEY_DOWN) {
if((access(bootDown.c_str(), F_OK) == 0)) {
runNdsFile(bootDown.c_str(), 0, NULL, false);
} else {
printf("Error:\n%s wasn't found!", bootDown.c_str());
printf("Error:\n%s \nwasn't found!", bootDown.c_str());
stop();
}
} else if (pressed & KEY_UP) {
Expand Down

0 comments on commit 5c1982f

Please # to comment.