src: update game resolution to 480x274

This commit is contained in:
Kazhnuz 2019-03-05 19:41:14 +01:00
parent 20d617408a
commit 9853aaf1c1
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ function love.conf(t)
t.window.title = "Imperium Porcorum" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 424 -- The window width (number)
t.window.height = 240 -- The window height (number)
t.window.width = 480 -- The window width (number)
t.window.height = 274 -- The window height (number)
t.window.borderless = false -- Remove all border visuals from the window (boolean)
t.window.resizable = false -- Let the window be user-resizable (boolean)
t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)