diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-01-01 09:14:08 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-01-01 09:14:08 -0800 |
commit | d6f955f144f97559958388b6d501e0904d27d10b (patch) | |
tree | d26516037934f5c8a5dd85c9dde0c44a794c0c75 | |
parent | a9aa3436fa64e77c9d3e335a50d194e79d640b58 (diff) | |
download | view.love-d6f955f144f97559958388b6d501e0904d27d10b.tar.gz |
fix stale comment
-rw-r--r-- | run.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run.lua b/run.lua index 0bbcdc7..2284c4f 100644 --- a/run.lua +++ b/run.lua @@ -55,7 +55,7 @@ end function run.load_settings() love.graphics.setFont(love.graphics.newFont(Settings.font_height)) - -- maximize window to determine maximum allowable dimensions + -- determine default dimensions and flags App.screen.width, App.screen.height, App.screen.flags = love.window.getMode() -- set up desired window dimensions App.screen.flags.resizable = true |