From 733af909f9f96ed30ea8023198cb6c868c718bbb Mon Sep 17 00:00:00 2001 From: Adubbz Date: Fri, 10 Jul 2020 21:26:50 +1000 Subject: [PATCH] daybreak: address nitpicks --- troposphere/daybreak/source/ui.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/troposphere/daybreak/source/ui.cpp b/troposphere/daybreak/source/ui.cpp index 71ee72e74..62834cd06 100644 --- a/troposphere/daybreak/source/ui.cpp +++ b/troposphere/daybreak/source/ui.cpp @@ -872,7 +872,7 @@ namespace dbk { ChangeMenu(std::make_shared(g_current_menu)); } else { g_use_exfat = false; - ChangeMenu(std::make_shared(g_current_menu)); + ChangeMenu(std::make_shared(g_current_menu, std::make_shared(g_current_menu), "Ready to begin update installation", "Are you sure you want to proceed?")); } return; @@ -898,8 +898,8 @@ namespace dbk { const float x = g_screen_width / 2.0f - WindowWidth / 2.0f; const float y = g_screen_height / 2.0f - WindowHeight / 2.0f; - this->AddButton(Fat32ButtonId, "Install (FAT32)", x + ButtonHorizontalInset, y + TitleGap, ButtonWidth, ButtonHeight); - this->AddButton(ExFatButtonId, "Install (exFAT/FAT32)", x + ButtonHorizontalInset + ButtonWidth + ButtonHorizontalGap, y + TitleGap, ButtonWidth, ButtonHeight); + this->AddButton(Fat32ButtonId, "FAT32", x + ButtonHorizontalInset, y + TitleGap, ButtonWidth, ButtonHeight); + this->AddButton(ExFatButtonId, "FAT32 + exFAT", x + ButtonHorizontalInset + ButtonWidth + ButtonHorizontalGap, y + TitleGap, ButtonWidth, ButtonHeight); /* Set the default selected button based on the user's current install. We aren't particularly concerned if fsIsExFatSupported fails. */ bool exfat_supported = false; @@ -932,7 +932,7 @@ namespace dbk { break; } - ChangeMenu(std::make_shared(g_current_menu)); + ChangeMenu(std::make_shared(g_current_menu, std::make_shared(g_current_menu), "Ready to begin update installation", "Are you sure you want to proceed?")); } this->UpdateButtons();