about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--main.lua6
1 files changed, 1 insertions, 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