Fast Scroll!

This commit is contained in:
VoltZ
2019-11-07 03:59:04 +01:00
parent a74a91590c
commit efdfda7d78
2 changed files with 24 additions and 0 deletions
+8
View File
@@ -190,6 +190,14 @@ void ScriptBrowse::Logic(u32 hDown, u32 hHeld, touchPosition touch) {
}
}
if (hDown & KEY_R) {
fastMode = true;
}
if (hDown & KEY_L) {
fastMode = false;
}
if(selection < screenPos) {
screenPos = selection;
} else if (selection > screenPos + ENTRIES_PER_SCREEN - 1) {