From 8d58ad8533656faa1899364e58ef71ce89dc633d Mon Sep 17 00:00:00 2001 From: bjorn Date: Mon, 6 Nov 2023 15:52:44 -0800 Subject: [PATCH] errhand doesn't use lovr.graphics.isInitialized; --- etc/boot.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/boot.lua b/etc/boot.lua index f378e579..248ede35 100644 --- a/etc/boot.lua +++ b/etc/boot.lua @@ -147,7 +147,7 @@ function lovr.errhand(message) print(message) - if not lovr.graphics or not lovr.graphics.isInitialized() then + if not lovr.graphics then return function() return 1 end end