From 5e85beab3f8f79b4754e663cee04cd162b9d0f2d Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Wed, 16 Oct 2024 17:23:24 -0400 Subject: [PATCH] conf: Lower resolution to maintain framerate --- conf.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/conf.lua b/conf.lua index 303bebf..e008994 100644 --- a/conf.lua +++ b/conf.lua @@ -3,8 +3,11 @@ love.conf = function(t) t.title, t.identity = "Space Crawler", "Bill Niblock" t.modules.joystick = false t.modules.physics = false - t.window.width = 1280 - t.window.height = 720 + -- This scales the game, and it still looks quite nice at 1440p! + -- t.window.fullscreen = true + -- t.window.fullscreentype = "desktop" + t.window.width = 640 + t.window.height = 360 t.window.vsync = false t.version = "11.5" end