Don't disable the emummc

This commit is contained in:
Such Meme, Many Skill
2020-02-07 14:45:35 +01:00
parent eecefd634c
commit a86294218c
2 changed files with 6 additions and 4 deletions

View File

@@ -170,9 +170,9 @@ int del_recursive(char *path){
}
while (!f_readdir(&dir, &fno) && fno.fname[0]){
if (fno.fattrib & AM_DIR)
if (fno.fattrib & AM_DIR){
del_recursive(getnextloc(localpath, fno.fname));
}
else {
gfx_box(0, y, 719, y + 16, COLOR_DEFAULT);
SWAPCOLOR(COLOR_RED);