Moved a gate

This commit is contained in:
2026-01-01 21:59:02 -05:00
parent ef80ea6cd8
commit 2bc2dd0b0c
2 changed files with 18 additions and 15 deletions

View File

@ -513,12 +513,16 @@ local function selectGateFromList()
dialing = true
sely = 0
selx = 0
elseif sely >= 17 and selx >= 23 then
selecting = false
sely = 0
selx = 0
break
end
end
-- Check back button (x: 23-28, y: 17-19)
if not dialing and sely >= 17 and sely <= 19 and selx >= 23 and selx <= 28 then
selecting = false
sely = 0
selx = 0
end
end
display.clearButtonData()