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:
@@ -1,11 +1,7 @@
|
||||
name: re3 conan+cmake build
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [ main ]
|
||||
release:
|
||||
types: [published]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-cmake:
|
||||
|
||||
@@ -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,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"
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user