From 80de771d2afe10f82652a58b587053e013ba6af5 Mon Sep 17 00:00:00 2001 From: --global <--global> Date: Sat, 1 Jul 2023 23:27:10 -0400 Subject: [PATCH] Elaborate on TARGET_FPS --- main.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.lua b/main.lua index 093a95f..ec82eb7 100644 --- a/main.lua +++ b/main.lua @@ -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