From c497581539617892af774e00457cf2838e25c297 Mon Sep 17 00:00:00 2001 From: Not Date: Sun, 4 Sep 2022 05:33:06 +0200 Subject: [PATCH] invert map selection direction --- browser.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser.lua b/browser.lua index 937b69e..3a68496 100644 --- a/browser.lua +++ b/browser.lua @@ -406,10 +406,10 @@ local function controller(player) local cmd = player.cmd if not keyRepeat then if cmd.driftturn > 0 then - updateMapIndex(-1) + updateMapIndex(1) updateKeyRepeat() elseif cmd.driftturn < 0 then - updateMapIndex(1) + updateMapIndex(-1) updateKeyRepeat() elseif cmd.buttons & BT_FORWARD then scrollPos = $ - 1