diff --git a/Zframework/timeStr.lua b/Zframework/timeStr.lua index b9d2074e..328ac096 100644 --- a/Zframework/timeStr.lua +++ b/Zframework/timeStr.lua @@ -1,7 +1,7 @@ local int,format=math.floor,string.format return function(s) if s<60 then - return format("%.3fs\"",s) + return format("%.3f\"",s) elseif s<3600 then return format("%d'%05.2f\"",int(s/60),s%60) else diff --git a/parts/scenes/depause.lua b/parts/scenes/depause.lua index b747c97e..8856a178 100644 --- a/parts/scenes/depause.lua +++ b/parts/scenes/depause.lua @@ -1,13 +1,10 @@ local gc=love.graphics -local int=math.floor local scene={} local timer -function scene.sceneInit() - timer=1 -end +function scene.sceneInit()timer=1 end scene.keyDown=NULL scene.mouseDown=NULL