Minor stuff

This commit is contained in:
Aurora Wright 2017-05-20 05:22:55 +02:00
parent 98f650a5de
commit 57900e91ba
2 changed files with 2 additions and 3 deletions

View File

@ -32,8 +32,7 @@ void main(int argc __attribute__((unused)), char **argv)
u32 i; u32 i;
for(i = 0; i < 23 + 255 && argv[0][i] != 0; i++) for(i = 0; i < 23 + 255 && argv[0][i] != 0; i++)
absPath[i] = argv[0][i]; absPath[i] = argv[0][i];
for(; i < 24 + 255; i++) absPath[i] = 0;
absPath[i] = 0;
char *argvPassed[1] = {absPath}; char *argvPassed[1] = {absPath};

View File

@ -190,7 +190,7 @@ void configMenu(bool oldPinStatus, u32 oldPinMode)
"Enable Luma3DS's ARM9/ARM11 exception\n" "Enable Luma3DS's ARM9/ARM11 exception\n"
"handlers. Luma3DS should be ran as\n" "handlers. Luma3DS should be ran as\n"
"boot.firm\n\n" "boot.firm.\n\n"
"Useful for debugging." "Useful for debugging."
}; };