show whether debug is on

This commit is contained in:
yuki 2025-11-11 22:31:22 -03:00
parent 492da41dac
commit b79c2cf866

View file

@ -13,6 +13,7 @@ end
function Stage:canvasDraw() function Stage:canvasDraw()
Stage.super.canvasDraw(self) Stage.super.canvasDraw(self)
if DEBUG then love.graphics.print('DEBUG', 2, 2) end
end end
return Stage return Stage