Elaborate on TARGET_FPS

pull/68/head
--global 2023-07-01 23:27:10 -04:00
parent 7c32273971
commit 80de771d2a
1 changed files with 2 additions and 0 deletions

View File

@ -293,6 +293,8 @@ function love.resize(w, h)
GLOBAL_CANVAS = love.graphics.newCanvas(w, h)
end
-- higher values of TARGET_FPS will make the game run "faster"
-- since the game is mostly designed for 60 FPS
local TARGET_FPS = 60
local FRAME_DURATION = 1.0 / TARGET_FPS