aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author1029chris <1029chris@gmail.com>2016-02-22 19:34:25 -0800
committer1029chris <1029chris@gmail.com>2016-02-22 19:34:25 -0800
commit0ab2713b54e970e1a786b1288cf57b6272d72197 (patch)
treefd9587f71a6972a3309431bc9287ef8aa1f093f0
parent370a47be75269dfbf335da1704ddfe3635118864 (diff)
Fullscreen mode is default
-rw-r--r--conf.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.lua b/conf.lua
index c5ffc8e..0bbafd3 100644
--- a/conf.lua
+++ b/conf.lua
@@ -4,6 +4,6 @@ function love.conf(t)
t.version = "0.10.0"
t.modules.joystick = false
t.window.title = "Don't Get a Virus"
- t.window.fullscreentype = "exclusive"
- t.window.fullscreen = false
+ t.window.fullscreentype = "desktop"
+ t.window.fullscreen = true
end