GUI: Increase scrolling speed

This commit is contained in:
Jeffrey Pfau 2016-08-30 09:49:27 -07:00
parent 1f2bef0ceb
commit 455be60da5
1 changed files with 1 additions and 1 deletions

View File

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