commit a184d52d4f6c4b6c2edc42d9b7771480d3e82d82
Author: Michael Day <contact@michaelcday.com>
AuthorDate: Sun Dec 10 22:14:29 2023 -0500
Commit: Michael Day <contact@michaelcday.com>
CommitDate: Sun Dec 10 22:14:29 2023 -0500
strife: Make joystick LR less sensitive in menu
---
src/strife/m_menu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/strife/m_menu.c b/src/strife/m_menu.c
index d24536b9..32a5d658 100644
--- a/src/strife/m_menu.c
+++ b/src/strife/m_menu.c
@@ -1768,12 +1768,12 @@ boolean M_Responder (event_t* ev)
if (dir & JOY_DIR_LEFT)
{
key = key_menu_left;
- joywait = I_GetTime() + 2;
+ joywait = I_GetTime() + 5;
}
else if (dir & JOY_DIR_RIGHT)
{
key = key_menu_right;
- joywait = I_GetTime() + 2;
+ joywait = I_GetTime() + 5;
}
#define JOY_BUTTON_MAPPED(x) ((x) >= 0)