From 5c1982f0745ab46045ab91397c08fee9ec9b84c7 Mon Sep 17 00:00:00 2001 From: FlameAlt53 <47005312+FlameAlt53@users.noreply.github.com> Date: Thu, 4 Apr 2019 13:23:18 -0700 Subject: [PATCH] little things i forgot --- arm9/source/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arm9/source/main.cpp b/arm9/source/main.cpp index 5d2f356..e00f13e 100644 --- a/arm9/source/main.cpp +++ b/arm9/source/main.cpp @@ -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) { @@ -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) { @@ -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) {