File handling: return to base menu when A is pressed

This commit is contained in:
d0k3 2017-02-10 15:23:46 +01:00
parent 704d6725c4
commit 58eaffc577

View File

@ -713,6 +713,7 @@ u32 FileHandlerMenu(char* current_path, u32* cursor, u32* scroll, DirStruct* cur
}
return 0;
}
return FileHandlerMenu(current_path, cursor, scroll, current_dir, clipboard);
} else if (user_select == copystd) { // -> copy to OUTPUT_PATH
u32 flags = 0;
if ((n_marked > 1) && ShowPrompt(true, "Copy all %lu selected files?", n_marked)) {
@ -1011,7 +1012,7 @@ u32 FileHandlerMenu(char* current_path, u32* cursor, u32* scroll, DirStruct* cur
}
}
return 1;
return FileHandlerMenu(current_path, cursor, scroll, current_dir, clipboard);
}
u32 GodMode() {