From cd133c170f0db9e659e7ea0f166f814907f51490 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 14 May 2022 20:44:03 -0700 Subject: [PATCH] . --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 6bae19a..4a6dafc 100644 --- a/main.lua +++ b/main.lua @@ -86,7 +86,7 @@ function love.draw() local mx,my = coord(love.mouse.getX()-16), coord(love.mouse.getY()-line.y) - for i,shape in ipairs(line.shapes) do + for _,shape in ipairs(line.shapes) do assert(shape) if on_shape(mx,my, line, shape) then love.graphics.setColor(1,0,0)