aboutsummaryrefslogtreecommitdiff
path: root/conf.lua
blob: beafef35147c292b81a8b77cb797b894824aa273 (plain)
1
2
3
4
5
6
7
8
9
10
11
require("game")

love.conf = function(t)
    t.gammacorrect = true
    t.vsync = game.vsync
    t.title = game.name
    t.identity = game.id
    t.window.width = (game.width * game.scale)
    t.window.height = (game.height * game.scale)
    t.version = "11.5"
end