feature/imp-97-ascension-meter #40

Merged
mr.two merged 2 commits from feature/imp-97-ascension-meter into master 2026-03-19 17:27:41 +00:00
Showing only changes of commit ca883a15bd - Show all commits

View File

@@ -140,16 +140,16 @@ local function draw_arrow(x, y, direction, color)
local size = 12 local size = 12
local half = size / 2 local half = size / 2
if direction == "left" then if direction == "left" then
trib(x + half, y, x, y + half, x + half, y + size, color) tri(x + half, y, x, y + half, x + half, y + size, color)
rectb(x + half, y + half - 2, half, 4, color) rectb(x + half, y + half - 2, half, 4, color)
elseif direction == "right" then elseif direction == "right" then
trib(x + half, y, x + size, y + half, x + half, y + size, color) tri(x + half, y, x + size, y + half, x + half, y + size, color)
rectb(x, y + half - 2, half, 4, color) rectb(x, y + half - 2, half, 4, color)
elseif direction == "up" then elseif direction == "up" then
trib(x, y + half, x + half, y, x + size, y + half, color) tri(x, y + half, x + half, y, x + size, y + half, color)
rectb(x + half - 2, y + half, 4, half, color) rectb(x + half - 2, y + half, 4, half, color)
elseif direction == "down" then elseif direction == "down" then
trib(x, y + half, x + half, y + size, x + size, y + half, color) tri(x, y + half, x + half, y + size, x + size, y + half, color)
rectb(x + half - 2, y, 4, half, color) rectb(x + half - 2, y, 4, half, color)
end end
end end