From 8478bbff167ef4435d643a8a53233169ec62e1ce Mon Sep 17 00:00:00 2001 From: KiwiSky <74114256+itzKiwiSky@users.noreply.github.com> Date: Sat, 16 Aug 2025 10:05:26 -0300 Subject: [PATCH] removed comment --- src/modules/graphics/wrap_Graphics.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/graphics/wrap_Graphics.lua b/src/modules/graphics/wrap_Graphics.lua index 82df91fc8..07b43998b 100644 --- a/src/modules/graphics/wrap_Graphics.lua +++ b/src/modules/graphics/wrap_Graphics.lua @@ -55,7 +55,7 @@ end function graphics.stencil(func, action, value, keepvalues) love.markDeprecated(2, "love.graphics.stencil", "function", "replaced", "love.graphics.setStencilMode or setStencilState") - action = action or "replace" -- make compatible with 11.x by giving default value -- + if action == nil then action = "replace" end if not keepvalues then graphics.clear(false, true, false)