From a7679a5509857ecf6c871e481e0df91902e348d5 Mon Sep 17 00:00:00 2001 From: Sasha Szpakowski Date: Sun, 21 Jun 2026 16:16:38 -0300 Subject: [PATCH] default error handler's text is positioned better for fractional DPI scales maybe we need a snapToPixel function in the future, if we stick with this DPI scaling model... --- src/modules/love/callbacks.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/love/callbacks.lua b/src/modules/love/callbacks.lua index 132815b9e..3dc12576f 100644 --- a/src/modules/love/callbacks.lua +++ b/src/modules/love/callbacks.lua @@ -291,7 +291,7 @@ function love.errorhandler(msg) local function draw() if not love.graphics.isActive() then return end - local pos = 70 + local pos = 60 love.graphics.clear(89/255, 157/255, 220/255) love.graphics.printf(p, pos, pos, love.graphics.getWidth() - pos) love.graphics.present()