Fix navigation on the graphics settings page

The cursor didn't move with the left stick, only the D-pad.
(Disable unnecessary workflows)
This commit is contained in:
Dima353
2026-07-15 18:09:59 +03:00
parent 3753dcd004
commit 3f754594b2
4 changed files with 8 additions and 15 deletions
+1 -5
View File
@@ -1,11 +1,7 @@
name: re3 conan+cmake build name: re3 conan+cmake build
on: on:
pull_request: workflow_dispatch:
push:
branches: [ main ]
release:
types: [published]
jobs: jobs:
build-cmake: build-cmake:
+1 -5
View File
@@ -1,11 +1,7 @@
name: reVC premake amd64 build name: reVC premake amd64 build
on: on:
pull_request: workflow_dispatch:
push:
branches: [ main ]
release:
types: [published]
env: env:
GLFW_VER: "3.3.2" GLFW_VER: "3.3.2"
+1 -5
View File
@@ -1,11 +1,7 @@
name: re3 premake x86 build name: re3 premake x86 build
on: on:
pull_request: workflow_dispatch:
push:
branches: [ main ]
release:
types: [published]
env: env:
GLFW_VER: "3.3.2" GLFW_VER: "3.3.2"
+5
View File
@@ -4358,6 +4358,10 @@ CMenuManager::ProcessButtonPresses(void)
} }
#endif #endif
} else { } else {
#ifdef SCROLLABLE_PAGES
if (!(m_nTotalListRow > MAX_VISIBLE_OPTION))
#endif
{
if (CPad::GetPad(0)->GetDownJustDown() || CPad::GetPad(0)->GetAnaloguePadDown() || CPad::GetPad(0)->GetDPadDownJustDown()) { if (CPad::GetPad(0)->GetDownJustDown() || CPad::GetPad(0)->GetAnaloguePadDown() || CPad::GetPad(0)->GetDPadDownJustDown()) {
m_bShowMouse = false; m_bShowMouse = false;
DMAudio.PlayFrontEndSound(SOUND_FRONTEND_MENU_NAVIGATION, 0); DMAudio.PlayFrontEndSound(SOUND_FRONTEND_MENU_NAVIGATION, 0);
@@ -4367,6 +4371,7 @@ CMenuManager::ProcessButtonPresses(void)
DMAudio.PlayFrontEndSound(SOUND_FRONTEND_MENU_NAVIGATION, 0); DMAudio.PlayFrontEndSound(SOUND_FRONTEND_MENU_NAVIGATION, 0);
goUp = true; goUp = true;
} }
}
#ifndef TIDY_UP_PBP #ifndef TIDY_UP_PBP
if ((m_nCurrOption == 0) && (m_nCurrScreen == MENUPAGE_PAUSE_MENU)) { if ((m_nCurrOption == 0) && (m_nCurrScreen == MENUPAGE_PAUSE_MENU)) {