Remove debugging

Additionally increased the maximum size of the directory path to display
by a whopping 3 characters.

Signed-off-by: Mahyar Koshkouei <deltabeard@users.noreply.github.com>
This commit is contained in:
Mahyar Koshkouei
2017-01-12 12:11:38 +00:00
parent 261bafd41d
commit 4b8ca4ab6f
4 changed files with 3 additions and 12 deletions

View File

@@ -215,7 +215,6 @@ out:
gfxExit();
sdmcExit();
puts("Return");
return 0;
err:
@@ -254,7 +253,7 @@ int listDir(int from, int max, int select)
if(wd == NULL)
goto err;
printf("Dir: %.30s\n", wd);
printf("Dir: %.33s\n", wd);
if((dp = opendir(wd)) == NULL)
goto err;