From 455be60da56bbf3dfac3d8cbe00b7a3cc82f976c Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Tue, 30 Aug 2016 09:49:27 -0700 Subject: [PATCH] GUI: Increase scrolling speed --- src/util/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/gui.c b/src/util/gui.c index f92082ecd..5aed3d58b 100644 --- a/src/util/gui.c +++ b/src/util/gui.c @@ -19,7 +19,7 @@ void GUIPollInput(struct GUIParams* params, uint32_t* newInputOut, uint32_t* hel } else { params->inputHistory[i] = -1; } - if (!params->inputHistory[i] || (params->inputHistory[i] >= 30 && !(params->inputHistory[i] % 6))) { + if (!params->inputHistory[i] || (params->inputHistory[i] >= 30 && !(params->inputHistory[i] % 5))) { newInput |= (1 << i); } }