From df3dd69a0d502cddf9047fcdb7e2cee833bf4287 Mon Sep 17 00:00:00 2001 From: Matthew Toro Date: Mon, 6 Apr 2026 03:09:52 -0400 Subject: [PATCH] tweak: change name of main menu button from "Auth'"to "Switch User" --- Minecraft.Client/Common/UI/UIScene_MainMenu.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp b/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp index 4070de8b..8b716951 100644 --- a/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp @@ -51,12 +51,12 @@ UIScene_MainMenu::UIScene_MainMenu(int iPad, void *initData, UILayer *parentLaye if(ProfileManager.IsFullVersion()) { m_bTrialVersion=false; - m_buttons[static_cast(eControl_UnlockOrDLC)].init(L"Auth",eControl_UnlockOrDLC); + m_buttons[static_cast(eControl_UnlockOrDLC)].init(L"Switch User",eControl_UnlockOrDLC); } else { m_bTrialVersion=true; - m_buttons[static_cast(eControl_UnlockOrDLC)].init(L"Auth",eControl_UnlockOrDLC); + m_buttons[static_cast(eControl_UnlockOrDLC)].init(L"Switch User",eControl_UnlockOrDLC); } #ifndef _DURANGO @@ -187,7 +187,7 @@ void UIScene_MainMenu::handleGainFocus(bool navBack) if(navBack && ProfileManager.IsFullVersion()) { // once again replacing the shop with auth. not a bad thing. - m_buttons[static_cast(eControl_UnlockOrDLC)].setLabel(L"Auth"); + m_buttons[static_cast(eControl_UnlockOrDLC)].setLabel(L"Switch User"); } #if TO_BE_IMPLEMENTED @@ -2264,7 +2264,7 @@ void UIScene_MainMenu::tick() if(ProfileManager.IsFullVersion()) { m_bTrialVersion=false; - m_buttons[(int)eControl_UnlockOrDLC].init(L"Auth",eControl_UnlockOrDLC); + m_buttons[(int)eControl_UnlockOrDLC].init(L"Switch User",eControl_UnlockOrDLC); } } #endif