Merge text0

This commit is contained in:
Kartik K. Agaram 2023-01-01 18:10:43 -08:00
commit b77b8a7b89
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ function load_settings()
App.screen.width = 40*App.width(App.newText(love.graphics.getFont(), 'm'))
App.screen.flags.resizable = true
App.screen.flags.minwidth = math.min(App.screen.width, 200)
App.screen.flags.minheight = math.min(App.screen.width, 200)
App.screen.flags.minheight = math.min(App.screen.height, 200)
love.window.setMode(App.screen.width, App.screen.height, App.screen.flags)
end
end