From 7bdd01738ac88b135c28e3e308a9c04f85d8587d Mon Sep 17 00:00:00 2001 From: d0k3 Date: Sat, 27 Feb 2021 12:18:39 +0100 Subject: [PATCH] Show a wait... message when uninstalling a single title --- arm9/source/godmode.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arm9/source/godmode.c b/arm9/source/godmode.c index f99db58..6f31d29 100644 --- a/arm9/source/godmode.c +++ b/arm9/source/godmode.c @@ -1660,7 +1660,8 @@ u32 FileHandlerMenu(char* current_path, u32* cursor, u32* scroll, PaneData** pan n_success++; } ShowPrompt(false, "%lu/%lu titles uninstalled", n_success, n_marked); - } else { + } else if (CheckWritePermissions(file_path)) { + ShowString("%s\nUninstalling, please wait...", pathstr); if (UninstallGameDataTie(file_path, true, full_uninstall, full_uninstall) != 0) ShowPrompt(false, "%s\nUninstall failed!", pathstr); ClearScreenF(true, false, COLOR_STD_BG);