diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-11-22 22:42:34 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-11-22 22:42:34 -0500 |
commit | 27a7d334931514e4ca4fabe8eef7d47495c68301 (patch) | |
tree | a553d6be30025aa2761f1fb804966aba4b489096 /main.cpp | |
parent | 05dd30a5158184fea83d93f53e8100aecaebb74a (diff) |
Black bars if world is smaller than screen (messy)
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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() ); |