aboutsummaryrefslogtreecommitdiff
path: root/conf.lua
blob: 9444c30736c554c3ecc0b187a43d39220942309b (plain)
1
2
3
4
5
6
7
8
9
function love.conf(t)
  t.window.width = 0
  t.window.height = 0
  t.version = "0.10.0"
  t.modules.joystick = false
  t.window.title = "Don't Get a Virus"
  t.window.fullscreen = true
  t.window.fullscreentype = "exclusive"
end