This commit is contained in:
2026-05-05 20:05:46 -04:00
parent 4f34b6f6fd
commit d8e3330e5e
2 changed files with 8 additions and 6 deletions

View File

@@ -273,7 +273,7 @@ local function drawStand()
for i = 0, steps do
local frac = i / math.max(1, steps)
local cx_l = lx1 + math.floor((lx2 - lx1) * frac)
px_rect(cx_l - legW//2, baseY + i, legW, 1, COL_STAND)
px_rect(cx_l - math.floor(legW/2), baseY + i, legW, 1, COL_STAND)
end
-- Right leg
local rx1 = CX + math.floor(RX * 0.3)
@@ -281,11 +281,11 @@ local function drawStand()
for i = 0, steps do
local frac = i / math.max(1, steps)
local cx_r = rx1 + math.floor((rx2 - rx1) * frac)
px_rect(cx_r - legW//2, baseY + i, legW, 1, COL_STAND)
px_rect(cx_r - math.floor(legW/2), baseY + i, legW, 1, COL_STAND)
end
-- Horizontal crossbar
local barY = baseY + math.floor(steps * 0.55)
px_rect(lx2 - legW//2, barY, rx2 - lx2 + legW, 6, COL_STAND_DRK)
px_rect(lx2 - math.floor(legW/2), barY, rx2 - lx2 + legW, 6, COL_STAND_DRK)
end
-- Fixed pointer triangle at the top of the wheel (screen top, pointing down)