Skip to content

Commit 8478bbf

Browse files
committed
removed comment
1 parent fbc8e4e commit 8478bbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/graphics/wrap_Graphics.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ end
5555
function graphics.stencil(func, action, value, keepvalues)
5656
love.markDeprecated(2, "love.graphics.stencil", "function", "replaced", "love.graphics.setStencilMode or setStencilState")
5757

58-
action = action or "replace" -- make compatible with 11.x by giving default value --
58+
if action == nil then action = "replace" end
5959

6060
if not keepvalues then
6161
graphics.clear(false, true, false)

0 commit comments

Comments
 (0)