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")),