From cc2d20533f8e1a1902a855e65be976691568299c Mon Sep 17 00:00:00 2001 From: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> Date: Thu, 3 Dec 2020 23:01:55 +0100 Subject: [PATCH] Add text while backing up files --- source/ApplicationState.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/ApplicationState.cpp b/source/ApplicationState.cpp index d6eade6..10ea816 100644 --- a/source/ApplicationState.cpp +++ b/source/ApplicationState.cpp @@ -79,6 +79,8 @@ void ApplicationState::changeState(eGameState newState) { menu.addOption("Install", STATE_INSTALL_STARTED); } else if (this->state == STATE_INSTALL_STARTED) { menu.addText("Installing..."); + } else if (this->state == STATE_INSTALL_BACKUP) { + menu.addText("... backing up files"); } else if (this->state == STATE_INSTALL_FST) { menu.addText("... patching title.fst"); } else if (this->state == STATE_INSTALL_COS) {