blob: c5ffc8e49d1b5bf5134ce5b47f7904ed1bd1b3b8 (
plain)
1
2
3
4
5
6
7
8
9
|
function love.conf(t)
t.window.width = 800
t.window.height = 600
t.version = "0.10.0"
t.modules.joystick = false
t.window.title = "Don't Get a Virus"
t.window.fullscreentype = "exclusive"
t.window.fullscreen = false
end
|