BPM: Adjust Hotkey And Button Legends (#3323)
This commit is contained in:
parent
8def5b5d0a
commit
24f15acf6c
|
@ -1397,9 +1397,9 @@ void FullscreenUI::DrawLandingWindow()
|
||||||
|
|
||||||
if (!AreAnyDialogsOpen())
|
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();
|
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();
|
DoResume();
|
||||||
else if (ImGui::IsKeyPressed(ImGuiKey_NavGamepadMenu, false) || ImGui::IsKeyPressed(ImGuiKey_F11, false))
|
else if (ImGui::IsKeyPressed(ImGuiKey_NavGamepadMenu, false) || ImGui::IsKeyPressed(ImGuiKey_F11, false))
|
||||||
DoToggleFullscreen();
|
DoToggleFullscreen();
|
||||||
|
@ -1407,8 +1407,8 @@ void FullscreenUI::DrawLandingWindow()
|
||||||
|
|
||||||
if (IsGamepadInputSource())
|
if (IsGamepadInputSource())
|
||||||
{
|
{
|
||||||
SetFullscreenFooterText(std::array{std::make_pair(ICON_PF_BURGER_MENU, FSUI_VSTR("About")),
|
SetFullscreenFooterText(std::array{std::make_pair(ICON_PF_SHARE_CAPTURE, FSUI_VSTR("About")),
|
||||||
std::make_pair(ICON_PF_BUTTON_Y, FSUI_VSTR("Resume Last Session")),
|
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_BUTTON_X, FSUI_VSTR("Toggle Fullscreen")),
|
||||||
std::make_pair(ICON_PF_XBOX_DPAD_LEFT_RIGHT, FSUI_VSTR("Navigate")),
|
std::make_pair(ICON_PF_XBOX_DPAD_LEFT_RIGHT, FSUI_VSTR("Navigate")),
|
||||||
std::make_pair(ICON_PF_BUTTON_A, FSUI_VSTR("Select")),
|
std::make_pair(ICON_PF_BUTTON_A, FSUI_VSTR("Select")),
|
||||||
|
|
Loading…
Reference in New Issue