aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-11-22 22:42:34 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-11-22 22:42:34 -0500
commit27a7d334931514e4ca4fabe8eef7d47495c68301 (patch)
treea553d6be30025aa2761f1fb804966aba4b489096 /main.cpp
parent05dd30a5158184fea83d93f53e8100aecaebb74a (diff)
Black bars if world is smaller than screen (messy)
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 1076903..4d14190 100644
--- a/main.cpp
+++ b/main.cpp
@@ -320,9 +320,11 @@ void render() {
if (ui::debug) {
auto pos = game::engine.getSystem<PlayerSystem>()->getPosition();
ui::putText(offset.x-SCREEN_WIDTH/2, (offset.y+SCREEN_HEIGHT/2)-ui::fontSize,
- "loc: (%+.2f, %+.2f)\nticks: %u\nxml: %s",
+ "loc: (%+.2f, %+.2f)\noffset: (%+.2f, %+.2f)\nticks: %u\nxml: %s",
pos.x,
pos.y,
+ offset.x,
+ offset.y,
game::time::getTickCount(),
game::engine.getSystem<WorldSystem>()->getXMLFile().c_str()
);