aboutsummaryrefslogtreecommitdiff
path: root/conf.lua
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-12-28 16:11:24 +0000
committerJuan J. Martinez <jjm@usebox.net>2023-12-28 16:16:00 +0000
commit4f8d6dd049d4f4ffa1373d084dc800de3d80705b (patch)
tree12148f9cbf577a9d453621ae20d2e851ee5e000f /conf.lua
downloadstorage-chaos-4f8d6dd049d4f4ffa1373d084dc800de3d80705b.tar.gz
storage-chaos-4f8d6dd049d4f4ffa1373d084dc800de3d80705b.zip
Initial import
Diffstat (limited to 'conf.lua')
-rw-r--r--conf.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/conf.lua b/conf.lua
new file mode 100644
index 0000000..beafef3
--- /dev/null
+++ b/conf.lua
@@ -0,0 +1,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