From eec40d972b49675f9cc8f4e78dada22b0c972847 Mon Sep 17 00:00:00 2001 From: "theo@manjaro" Date: Fri, 4 Mar 2022 15:20:36 +0100 Subject: [PATCH] Fixed pixelperfect --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index f44c388..660815c 100644 --- a/main.lua +++ b/main.lua @@ -26,7 +26,7 @@ function love.load() love.window.setTitle('Neutron') w,h = love.window.getDesktopDimensions() res = game.OSTYPE=="PC" - push:setupScreen(game.WIDTH, game.HEIGHT, w, h, {fullscreen = true,resizable = res, pixelperfect = OSTYPE~="Mobile"}) + push:setupScreen(game.WIDTH, game.HEIGHT, w, h, {fullscreen = true,resizable = res, pixelperfect = game.OSTYPE~="Mobile"}) push:setBorderColor(0.161,0.157, 0.192,1) end