From c0e257214242794e5537454f3f8eefeb63aaba2f Mon Sep 17 00:00:00 2001 From: Paul Liverman III Date: Sat, 18 Jun 2016 20:26:20 -0700 Subject: [PATCH] small fix to run in 0.10 --- src/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.lua b/src/main.lua index aebe7d8..a8ffc2b 100644 --- a/src/main.lua +++ b/src/main.lua @@ -23,7 +23,7 @@ function love.load() images.viper = lg.newImage('img/viper.png') --tmp lg.setPointSize(10) - lg.setPointStyle("rough") + --lg.setPointStyle("rough") --WAS REMOVED IN 0.10, FIND ITS REPLACEMENT fleet[1] = bsg() for i=1,8 do @@ -124,7 +124,7 @@ local timing = -33 local paused = false function love.update(dt) if paused then return end - dt = dt * 10 --temporary accelerated + dt = dt --* 10 --temporary accelerated timer = timer + dt if timer >= 1 then timer = timer - 1