From 38551c8d8b6f90adc0d622e192293b3960c2bafd Mon Sep 17 00:00:00 2001 From: Reuh Date: Thu, 6 Apr 2017 16:53:06 +0200 Subject: [PATCH] Millisecond fix --- backend/love.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/love.lua b/backend/love.lua index 00fd60b..52e0f26 100644 --- a/backend/love.lua +++ b/backend/love.lua @@ -196,7 +196,7 @@ end if m.time then add(uqt.time, { get = function() - return love.timer.getTime() + return love.timer.getTime() * 1000 end }) end