From ad9c38f19f9dbb27f410b09abed54c6995959aa8 Mon Sep 17 00:00:00 2001 From: Hyper <34012267+hyperbx@users.noreply.github.com> Date: Wed, 5 Feb 2025 11:34:49 +0000 Subject: [PATCH] button_guide: set up Esc key texture --- UnleashedRecomp/ui/button_guide.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UnleashedRecomp/ui/button_guide.cpp b/UnleashedRecomp/ui/button_guide.cpp index 44292f44..d81db822 100644 --- a/UnleashedRecomp/ui/button_guide.cpp +++ b/UnleashedRecomp/ui/button_guide.cpp @@ -126,17 +126,17 @@ std::tuple, GuestTexture*> GetButtonIcon(EButtonIcon break; case EButtonIcon::LMB: - btn = PIXELS_TO_UV_COORDS(256, 128, 0, 0, 128, 128); + btn = PIXELS_TO_UV_COORDS(384, 128, 0, 0, 128, 128); texture = g_upKBMIcons.get(); break; case EButtonIcon::Enter: - btn = PIXELS_TO_UV_COORDS(256, 128, 128, 0, 128, 128); + btn = PIXELS_TO_UV_COORDS(384, 128, 128, 0, 128, 128); texture = g_upKBMIcons.get(); break; case EButtonIcon::Escape: - btn = PIXELS_TO_UV_COORDS(256, 128, 128, 0, 128, 128); + btn = PIXELS_TO_UV_COORDS(384, 128, 256, 0, 128, 128); texture = g_upKBMIcons.get(); break; }