invert map selection direction

This commit is contained in:
Not 2022-09-04 05:33:06 +02:00
parent 1f9c00202e
commit c497581539
1 changed files with 2 additions and 2 deletions

View File

@ -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