Revert "Set keyRepeatDelay to 12 instead of 6"

This reverts commit 2e0b5352ae.
This commit is contained in:
Epicpkmn11
2019-11-06 14:27:49 -06:00
parent 2e0b5352ae
commit ea40de7130
2 changed files with 18 additions and 18 deletions
+6 -6
View File
@@ -141,10 +141,10 @@ void ScriptBrowse::Logic(u32 hDown, u32 hHeld, touchPosition touch) {
} else {
selection = 0;
}
if (fastMode) {
if (fastMode == true) {
keyRepeatDelay = 3;
} else {
keyRepeatDelay = 12;
} else if (fastMode == false){
keyRepeatDelay = 6;
}
}
@@ -154,10 +154,10 @@ void ScriptBrowse::Logic(u32 hDown, u32 hHeld, touchPosition touch) {
} else {
selection = (int)infoJson.size()-1;
}
if (fastMode) {
if (fastMode == true) {
keyRepeatDelay = 3;
} else {
keyRepeatDelay = 12;
} else if (fastMode == false){
keyRepeatDelay = 6;
}
}