all repos — mgba @ 455be60da56bbf3dfac3d8cbe00b7a3cc82f976c

mGBA Game Boy Advance Emulator

GUI: Increase scrolling speed
Jeffrey Pfau jeffrey@endrift.com
Tue, 30 Aug 2016 09:49:27 -0700
commit

455be60da56bbf3dfac3d8cbe00b7a3cc82f976c

parent

1f2bef0ceb21076a6a6ba6e085187f152fa31dad

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/util/gui.csrc/util/gui.c

@@ -19,7 +19,7 @@ ++params->inputHistory[i];

} 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); } }