aboutsummaryrefslogtreecommitdiff
path: root/conf.lua
diff options
context:
space:
mode:
authorIndrajith K L2022-03-01 20:43:10 +0530
committerIndrajith K L2022-03-01 20:43:10 +0530
commit67c80456895ed13f79999e6cb7162680d3e8909d (patch)
treeff3b48eb2ed7debe9d96a5a6234de7ed34b9e542 /conf.lua
parent6227a1c681c0559add922a7e68cd634fcc85df41 (diff)
downloadYEAD-67c80456895ed13f79999e6cb7162680d3e8909d.tar.gz
YEAD-67c80456895ed13f79999e6cb7162680d3e8909d.tar.bz2
YEAD-67c80456895ed13f79999e6cb7162680d3e8909d.zip
* Adds Fullscreen+Toggle Support
* Window Resolution changed to 1280x720
Diffstat (limited to 'conf.lua')
-rw-r--r--conf.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf.lua b/conf.lua
index 8fbb0e5..47b7d36 100644
--- a/conf.lua
+++ b/conf.lua
@@ -1,7 +1,7 @@
function love.conf(t)
- t.window.width = 800
- t.window.height = 600
- t.window.fullscreen = false
+ t.window.width = 1280
+ t.window.height = 720
+ t.window.fullscreen = true
t.window.title = "<Your Enemy is in Another Dungeon>"
t.window.usedpiscale = true
t.window.icon = "assets/images/icon.png"