sfxr.lua/demo/conf.lua

7 lines
174 B
Lua
Raw Normal View History

function love.conf(t)
2016-03-01 23:37:06 +00:00
t.version = love._version:match("0%.9%.%d+") or "0.9.x"
t.window.width = 640
t.window.height = 600
t.window.title = "sfxr.lua Demo"
2016-03-01 23:37:06 +00:00
end