aboutsummaryrefslogtreecommitdiff
path: root/conf.lua
blob: 0bbafd395418807696f0ade936e3011460b6bc7b (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 = "desktop"
  t.window.fullscreen = true
end