mirror of
https://github.com/usysrc/LICK.git
synced 2025-01-21 18:24:23 +00:00
fix: 🐛 initialize time variable to 0 in main.lua
This commit is contained in:
parent
4a1fbf7358
commit
8ac9aac6ad
4
main.lua
4
main.lua
@ -1,6 +1,6 @@
|
||||
--
|
||||
-- This is an example how to use lick
|
||||
--
|
||||
--
|
||||
|
||||
local lick = require "lick"
|
||||
lick.updateAllFiles = true
|
||||
@ -14,7 +14,7 @@ local lg = love.graphics
|
||||
local sin, cos, pi = math.sin, math.cos, math.pi
|
||||
|
||||
-- The main love callbacks
|
||||
local time = time or 0
|
||||
local time = 0
|
||||
function love.load()
|
||||
time = 0
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user