From 517d87cbcfa947d9e188a17f3fb78a839d85e65c Mon Sep 17 00:00:00 2001 From: StackZ <47382115+SuperSaiyajinStackZ@users.noreply.github.com> Date: Thu, 18 Mar 2021 14:38:15 +0100 Subject: [PATCH] Fix U-U not displayin' progress on self update. --- source/utils/download.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/utils/download.cpp b/source/utils/download.cpp index 07e5e17..3cca1c8 100644 --- a/source/utils/download.cpp +++ b/source/utils/download.cpp @@ -895,7 +895,7 @@ void UpdateAction() { if (ScriptUtils::downloadRelease("Universal-Team/Universal-Updater", (is3DSX ? "Universal-Updater.3dsx" : "Universal-Updater.cia"), (is3DSX ? _3dsxPath : "sdmc:/Universal-Updater.cia"), - false, Lang::get("DONLOADING_UNIVERSAL_UPDATER")) == 0) { + false, Lang::get("DONLOADING_UNIVERSAL_UPDATER"), true) == 0) { if (is3DSX) { Msg::waitMsg(Lang::get("UPDATE_DONE")); @@ -903,8 +903,8 @@ void UpdateAction() { return; } - ScriptUtils::installFile("sdmc:/Universal-Updater.cia", false, Lang::get("INSTALL_UNIVERSAL_UPDATER")); - ScriptUtils::removeFile("sdmc:/Universal-Updater.cia", Lang::get("DELETE_UNNEEDED_FILE")); + ScriptUtils::installFile("sdmc:/Universal-Updater.cia", false, Lang::get("INSTALL_UNIVERSAL_UPDATER"), true); + ScriptUtils::removeFile("sdmc:/Universal-Updater.cia", Lang::get("DELETE_UNNEEDED_FILE"), true); Msg::waitMsg(Lang::get("UPDATE_DONE")); exiting = true; }