aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-06-10 15:33:02 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-06-10 15:33:02 -0400
commit076c984c438bea2b34f8dd3a62bb31ebd2eb5282 (patch)
treeb0252c6c054a86eebdf00afccd0afa83e7ff911a /src/ui.cpp
parent1e9f6aaddb2d21045f5e7dc63d6312a4407b3a08 (diff)
actual game making
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index f32bc79..c5d134e 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -1256,6 +1256,8 @@ EXIT:
if (fadeEnable)
break;
player->vel.x = -PLAYER_SPEED_CONSTANT;
+ if (std::stoi(game::getValue("Slow")) == 1)
+ player->vel.x /= 2.0f;
player->left = left = true;
player->right = right = false;
if (currentWorldToLeft) {
@@ -1270,6 +1272,8 @@ EXIT:
if (fadeEnable)
break;
player->vel.x = PLAYER_SPEED_CONSTANT;
+ if (std::stoi(game::getValue("Slow")) == 1)
+ player->vel.x /= 2.0f;
player->right = right = true;
player->left = left = false;
if (currentWorldToRight) {