diff --git a/CHANGELOG.md b/CHANGELOG.md index f2a4d90..5f650c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Fixed + +- **world:** Remove a forgotten camera debug function + ## 0.5.1 - 2019-06-21 ### Fixed diff --git a/gamecore/modules/world/baseworld.lua b/gamecore/modules/world/baseworld.lua index dd12150..db3fbf0 100644 --- a/gamecore/modules/world/baseworld.lua +++ b/gamecore/modules/world/baseworld.lua @@ -384,10 +384,6 @@ function BaseWorld:draw(dt) self.cameras:detachView(i) self.cameras:drawHUD(i) end - - for i=1, camNumber do - self.cameras:drawDebugViewBox(i) - end end end