From ca883a15bdf1aefed61092000fd20daa40a5037a Mon Sep 17 00:00:00 2001 From: Zoltan Timar Date: Thu, 19 Mar 2026 18:26:04 +0100 Subject: [PATCH] fix: unknown var --- inc/window/window.minigame.ddr.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/window/window.minigame.ddr.lua b/inc/window/window.minigame.ddr.lua index 439ca4a..df185fa 100644 --- a/inc/window/window.minigame.ddr.lua +++ b/inc/window/window.minigame.ddr.lua @@ -140,16 +140,16 @@ local function draw_arrow(x, y, direction, color) local size = 12 local half = size / 2 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) 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) 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) 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) end end