Balatro/conf.lua
2024-03-09 13:30:29 +08:00

14 lines
259 B
Lua

_RELEASE_MODE = true
_DEMO = false
function love.conf(t)
os.execute("set LOVE_GRAPHICS_USE_OPENGLES=1")
t.console = not _RELEASE_MODE
t.title = 'Balatro'
t.window.width = 0
t.window.height = 0
t.window.minwidth = 100
t.window.minheight = 100
end