- function love.conf(t)
- t.title = "Circle Clock"
- t.gammacorrect = false
- t.modules.audio = false
- t.modules.sound = false
- t.modules.physics = false
- t.modules.joystick = false
- t.window.resizable = true
- t.window.highdpi = true
- if love._os == "iOS" then
- t.window.borderless = true
- end
- t.window.vsync = 0
- end
|