From 0d696b53eb943c38e355313f08ed85a555343719 Mon Sep 17 00:00:00 2001 From: Dario Date: Tue, 3 Dec 2024 22:11:33 -0300 Subject: [PATCH] Add extra condition for starting the installer. --- UnleashedRecomp/ui/installer_wizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnleashedRecomp/ui/installer_wizard.cpp b/UnleashedRecomp/ui/installer_wizard.cpp index b72d8181..fb0d45fc 100644 --- a/UnleashedRecomp/ui/installer_wizard.cpp +++ b/UnleashedRecomp/ui/installer_wizard.cpp @@ -1032,7 +1032,7 @@ static void DrawMessagePrompt() if (messageWindowReturned) { - if (g_currentMessagePromptConfirmation && (g_currentMessageResult == 0)) + if (g_currentMessagePromptConfirmation && (g_currentMessageResult == 0) && (g_currentPage == WizardPage::SelectDLC)) { // If user confirms the message prompt that they wish to skip installing the DLC, start the installer. InstallerStart();