From 33f8840a229bc3cb4ef0a629fd5a9570dc8f888e Mon Sep 17 00:00:00 2001 From: ssjd2 <60418941+ssjd2@users.noreply.github.com> Date: Sat, 1 Aug 2020 18:01:23 -0700 Subject: [PATCH] Update maid64.lua The canvas will draw to the screen with whatever color is currently set, possibly making the screen entirely black. Setting the color to white before drawing would prevent this. --- maid64.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/maid64.lua b/maid64.lua index 9ccbf52..1cde6d3 100644 --- a/maid64.lua +++ b/maid64.lua @@ -31,6 +31,7 @@ end function maid64.finish() love.graphics.setCanvas() --love.graphics.setShader() --used only for special shaders + love.graphics.setColor(1,1,1,1) love.graphics.draw(maid64.canvas, maid64.x, maid64.y, 0, maid64.scaler) end