aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-11-30 17:54:13 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-11-30 17:54:13 -0500
commit1024fe8305e5b0a7bb1f660a1cee077172d84534 (patch)
tree3153bc45fe98809c3d7e81f14710c0a0c6e0a6a2 /main.cpp
parent8c80ad1431512979e364e540a239e806851e4ada (diff)
quest system
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index c3a0a6b..a3901a3 100644
--- a/main.cpp
+++ b/main.cpp
@@ -259,7 +259,8 @@ void render() {
const auto SCREEN_HEIGHT = game::SCREEN_HEIGHT;
auto ps = game::engine.getSystem<PlayerSystem>();
- offset.x = ps->getPosition().x + ps->getWidth() / 2;
+ auto ploc = ps->getPosition();
+ offset.x = ploc.x + ps->getWidth() / 2;
const auto& worldWidth = game::engine.getSystem<WorldSystem>()->getWidth();
if (worldWidth < (int)SCREEN_WIDTH)
@@ -270,7 +271,7 @@ void render() {
offset.x = ((worldWidth * 0.5f) - SCREEN_WIDTH / 2);
// ortho y snapping
- offset.y = /*std::max(player->loc.y + player->height / 2,*/ SCREEN_HEIGHT / 2.0f; /*);*/
+ offset.y = std::max(ploc.y /*+ player->height / 2*/, SCREEN_HEIGHT / 2.0f);
// "setup"
glm::mat4 projection = glm::ortho(floor(offset.x - SCREEN_WIDTH / 2), // left