From c68b5247c7c1469cdc92beb0c60b0199dda1771f Mon Sep 17 00:00:00 2001 From: "Skyth (Asilkan)" <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Sun, 16 Feb 2025 20:59:29 +0300 Subject: [PATCH] Fix Select/Back in message window not getting localised correctly. (#418) --- UnleashedRecomp/ui/message_window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UnleashedRecomp/ui/message_window.cpp b/UnleashedRecomp/ui/message_window.cpp index 76e1e97..6cadfe0 100644 --- a/UnleashedRecomp/ui/message_window.cpp +++ b/UnleashedRecomp/ui/message_window.cpp @@ -470,8 +470,8 @@ void MessageWindow::Draw() std::array buttons = { - Button(Localise("Common_Select"), EButtonIcon::LMB), - Button(Localise("Common_Back"), EButtonIcon::Escape), + Button("Common_Select", EButtonIcon::LMB), + Button("Common_Back", EButtonIcon::Escape), }; ButtonGuide::Open(buttons);