aboutsummaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
author1029chris <1029chris@gmail.com>2016-02-25 14:38:18 -0800
committer1029chris <1029chris@gmail.com>2016-02-25 14:38:18 -0800
commit294caa95b4cae4c11febdd952e0c0872f61168e3 (patch)
tree575a94331fd5e96c10712461ba6a5447b7d7d615 /main.lua
parentdd907df5b8f45aeb9c4de49d35593bf1ac7d4186 (diff)
Set windowed resolution from 800/600 to 1280/720
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index f801d2a..dac5260 100644
--- a/main.lua
+++ b/main.lua
@@ -38,7 +38,7 @@ function love.update(dt)
if love.keyboard.isDown("f4") == true then
love.window.setMode(800, 600, {fullscreen=true, fullscreentype="desktop"})
elseif love.keyboard.isDown("f5") == true then
- love.window.setMode(800, 600, {fullscreen=false})
+ love.window.setMode(1280, 720, {fullscreen=false})
end
if fade == 1 and fadeOpacity ~= 255 then
fadeOpacity = fadeOpacity + 5