From abc1314ecac8defd80e5ce3f070dd502826da9fb Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 18 Jul 2017 22:08:00 -0400 Subject: [PATCH] fix conffile --- conf.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/conf.lua b/conf.lua index 5f19e57..be6de3a 100644 --- a/conf.lua +++ b/conf.lua @@ -10,7 +10,7 @@ function love.conf(t) -- customize t.window.borderless = true -- Remove all border visuals from the window (boolean) t.window.fullscreentype = "desktop" -- Standard fullscreen or desktop fullscreen mode (string) - t.window.vsync = false -- Enable vertical sync (boolean) + t.window.vsync = true -- Enable vertical sync (boolean) t.window.fsaa = 16 -- The number of samples to use with multi-sampled antialiasing (number) t.window.display = 1 -- Index of the monitor to show the window in (number) t.window.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean). Added in 0.9.1 @@ -37,8 +37,8 @@ function love.conf(t) t.modules.system = true -- Enable the system module (boolean) t.modules.window = true -- Enable the window module (boolean) - t.window.width = 1024 -- The window width (number) - t.window.height = 768 -- The window height (number) - t.window.fullscreen = false -- Enable fullscreen (boolean) + t.window.width = 0 -- The window width (number) + t.window.height = 0 -- The window height (number) + t.window.fullscreen = true -- Enable fullscreen (boolean) end \ No newline at end of file