From a405f9e77742aff0e3eff84f06efecf3a125ea13 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Wed, 11 May 2022 21:52:57 -0700 Subject: inline --- main.lua | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/main.lua b/main.lua index 5052662..cc7f67c 100644 --- a/main.lua +++ b/main.lua @@ -81,17 +81,13 @@ function love.update(dt) local x, y = love.mouse.getX(), love.mouse.getY() if y >= drawing.y and y < drawing.y + drawing.h and x >= 12 and x < 12+drawing.w then lines.current = drawing - process_drag(drawing,love.mouse.getX(),love.mouse.getY()) + table.insert(drawing.pending, {x=love.mouse.getX(), y=love.mouse.getY()}) end end end end end -function process_drag(drawing, x,y) - table.insert(drawing.pending, {x=x, y=y}) -end - function love.mousereleased(x,y, button) if lines.current then if lines.current.pending then -- cgit 1.4.1-2-gfad0