about summary refs log tree commit diff stats
path: root/main.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-01-16 10:20:46 -0800
committerKartik K. Agaram <vc@akkartik.com>2023-01-16 10:20:46 -0800
commit15f56341dfed1d5829e8e742600cb5b559be22ac (patch)
tree1c2c2add1de2e406e70c303da495df6e4308a8c4 /main.lua
parente7b37e39dee84da1ef2e6fc008e0f7ea32fa3b57 (diff)
downloadlines.love-15f56341dfed1d5829e8e742600cb5b559be22ac.tar.gz
correct comment; vsync is hard to reason about
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index 9ad2f01..260f1b0 100644
--- a/main.lua
+++ b/main.lua
@@ -87,7 +87,7 @@ function App.initialize_globals()
 end
 
 function App.initialize(arg)
-  love.window.setVSync(0)  -- remove some delays in exchange for risk of screen tears; we're not a game
+  love.window.setVSync(0)  -- simplify profiling; we're not a game
   love.keyboard.setTextInput(true)  -- bring up keyboard on touch screen
   love.keyboard.setKeyRepeat(true)