diff --git a/obj/Room.lua b/obj/Room.lua index 056c0c1..9ebdda6 100644 --- a/obj/Room.lua +++ b/obj/Room.lua @@ -33,6 +33,7 @@ function Room:draw() camera:attach(0, 0, gw, gh) self:canvasDraw() camera:detach() + if DEBUG then love.graphics.print('DEBUG', 2, 2) end love.graphics.setCanvas() love.graphics.setColor(255, 255, 255, 255) diff --git a/rooms/Stage.lua b/rooms/Stage.lua index 44dbdce..20102dd 100644 --- a/rooms/Stage.lua +++ b/rooms/Stage.lua @@ -13,7 +13,6 @@ end function Stage:canvasDraw() Stage.super.canvasDraw(self) - if DEBUG then love.graphics.print('DEBUG', 2, 2) end end return Stage