From 24f15acf6c91fd7fac579f8e7b81d5094437e986 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:34:32 +0700 Subject: [PATCH] BPM: Adjust Hotkey And Button Legends (#3323) --- src/core/fullscreen_ui.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/fullscreen_ui.cpp b/src/core/fullscreen_ui.cpp index 30ce3ac74e..166065156c 100644 --- a/src/core/fullscreen_ui.cpp +++ b/src/core/fullscreen_ui.cpp @@ -1397,9 +1397,9 @@ void FullscreenUI::DrawLandingWindow() if (!AreAnyDialogsOpen()) { - if (ImGui::IsKeyPressed(ImGuiKey_GamepadStart, false) || ImGui::IsKeyPressed(ImGuiKey_F1, false)) + if (ImGui::IsKeyPressed(ImGuiKey_GamepadBack, false) || ImGui::IsKeyPressed(ImGuiKey_F1, false)) OpenAboutWindow(); - else if (ImGui::IsKeyPressed(ImGuiKey_NavGamepadInput, false) || ImGui::IsKeyPressed(ImGuiKey_F3, false)) + else if (ImGui::IsKeyPressed(ImGuiKey_GamepadStart, false) || ImGui::IsKeyPressed(ImGuiKey_F3, false)) DoResume(); else if (ImGui::IsKeyPressed(ImGuiKey_NavGamepadMenu, false) || ImGui::IsKeyPressed(ImGuiKey_F11, false)) DoToggleFullscreen(); @@ -1407,8 +1407,8 @@ void FullscreenUI::DrawLandingWindow() if (IsGamepadInputSource()) { - SetFullscreenFooterText(std::array{std::make_pair(ICON_PF_BURGER_MENU, FSUI_VSTR("About")), - std::make_pair(ICON_PF_BUTTON_Y, FSUI_VSTR("Resume Last Session")), + SetFullscreenFooterText(std::array{std::make_pair(ICON_PF_SHARE_CAPTURE, FSUI_VSTR("About")), + std::make_pair(ICON_PF_BURGER_MENU, FSUI_VSTR("Resume Last Session")), std::make_pair(ICON_PF_BUTTON_X, FSUI_VSTR("Toggle Fullscreen")), std::make_pair(ICON_PF_XBOX_DPAD_LEFT_RIGHT, FSUI_VSTR("Navigate")), std::make_pair(ICON_PF_BUTTON_A, FSUI_VSTR("Select")),