foxygit / doom Log in
commit 9679beb04a716fd116042b78195a75fdf8740309
Author:     Michael Day <contact@michaelcday.com>
AuthorDate: Wed Nov 29 16:09:36 2023 -0500
Commit:     Michael Day <contact@michaelcday.com>
CommitDate: Sun Dec 3 22:50:09 2023 -0500

    doom: Make joystick LR less sensitive in menu
---
 src/doom/m_menu.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/doom/m_menu.c b/src/doom/m_menu.c
index 5cb0274f..71b47cbf 100644
--- a/src/doom/m_menu.c
+++ b/src/doom/m_menu.c
@@ -1432,12 +1432,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)