From b63ba3acec0d52ba57488b537b6996ae7d6f0e86 Mon Sep 17 00:00:00 2001 From: Skyth <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Sun, 16 Feb 2025 14:27:40 +0300 Subject: [PATCH] Fix Select/Back in message window not getting localised correctly. --- 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 76e1e978..6cadfe0c 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);