Blame view

game/conf.lua 201 Bytes
ca0e8212   Geoffrey PREUD'HOMME   Code original
1
2
3
4
5
6
7
8
9
  function love.conf(t)

  	t.title = "TROSH: The Movie: The Game"

  	t.author = "Maurice"

  	t.console = false

  	t.screen.vsync = true

  	t.screen.width = 800

  	t.screen.height = 640

  	t.screen.fsaa = 0

  end