From 9e1acde032c847c1f4ecc3953b0307443876c829 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 19 Jul 2017 19:16:03 -0400 Subject: [PATCH] improvements to windows build --- conf.windows.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf.windows.lua b/conf.windows.lua index 5f19e57..2104d2c 100644 --- a/conf.windows.lua +++ b/conf.windows.lua @@ -8,7 +8,7 @@ function love.conf(t) -- t.window.icon = "love_block.png" -- Filepath to an image to use as the window's icon (string) -- customize - t.window.borderless = true -- Remove all border visuals from the window (boolean) + t.window.borderless = false -- 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.fsaa = 16 -- The number of samples to use with multi-sampled antialiasing (number) @@ -16,7 +16,7 @@ function love.conf(t) t.window.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean). Added in 0.9.1 -- no touching - t.window.resizable = false -- Let the window be user-resizable (boolean) + t.window.resizable = true -- Let the window be user-resizable (boolean) t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean). Added in 0.9.1 -- t.window.minwidth = 1 -- Minimum window width if the window is resizable (number) -- t.window.minheight = 1 -- Minimum window height if the window is resizable (number)