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
on:
pull_request:
push:
branches: [ main ]
release:
types: [published]
workflow_dispatch:
jobs:
build-cmake:
+1 -5
View File
@@ -1,11 +1,7 @@
name: reVC premake amd64 build
on:
pull_request:
push:
branches: [ main ]
release:
types: [published]
workflow_dispatch:
env:
GLFW_VER: "3.3.2"
+1 -5
View File
@@ -1,11 +1,7 @@
name: re3 premake x86 build
on:
pull_request:
push:
branches: [ main ]
release:
types: [published]
workflow_dispatch:
env:
GLFW_VER: "3.3.2"
+5
View File
@@ -4358,6 +4358,10 @@ CMenuManager::ProcessButtonPresses(void)
}
#endif
} else {
#ifdef SCROLLABLE_PAGES
if (!(m_nTotalListRow > MAX_VISIBLE_OPTION))
#endif
{
if (CPad::GetPad(0)->GetDownJustDown() || CPad::GetPad(0)->GetAnaloguePadDown() || CPad::GetPad(0)->GetDPadDownJustDown()) {
m_bShowMouse = false;
DMAudio.PlayFrontEndSound(SOUND_FRONTEND_MENU_NAVIGATION, 0);
@@ -4367,6 +4371,7 @@ CMenuManager::ProcessButtonPresses(void)
DMAudio.PlayFrontEndSound(SOUND_FRONTEND_MENU_NAVIGATION, 0);
goUp = true;
}
}
#ifndef TIDY_UP_PBP
if ((m_nCurrOption == 0) && (m_nCurrScreen == MENUPAGE_PAUSE_MENU)) {