From e9e3731a0bf4515bbb05142ca6ede853358e2f39 Mon Sep 17 00:00:00 2001 From: Simon Kellet Date: Fri, 2 Aug 2024 17:26:43 +0100 Subject: [PATCH] new window size --- conf.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/conf.lua b/conf.lua index a09d936..fa210de 100644 --- a/conf.lua +++ b/conf.lua @@ -1,7 +1,8 @@ --Config file for the game function love.conf(t) - t.window.width = 1600 - t.window.height = 960 + t.window.width = 1366 + t.window.height = 768 t.window.title = "Tanks-A-Lot" + t.window.resizable = true t.version = "11.5" end