aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 19:03:00 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 19:03:00 -0400
commit4d990caeb4b81a98b5f3fce11dc469e1b755d3c0 (patch)
treef3b050d402b46d91d6293938d84e05cfd6ef218f
parenteb028c960be2eeaee6e5177bc9c83a489e9209f2 (diff)
parent5576c2d0b0130a0b3bfbef8eb09cd9297d79fd09 (diff)
Merge branch 'master' of https://github.com/tcsullivan/gamedev2
-rw-r--r--src/player.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/player.cpp b/src/player.cpp
index 7d1653e..187d61a 100644
--- a/src/player.cpp
+++ b/src/player.cpp
@@ -53,10 +53,10 @@ void PlayerSystem::receive(const KeyDownEvent& kue)
if (player.valid()) {
if (kue.sym == SDLK_a) {
if (auto vel = player.component<Velocity>(); vel)
- vel->x += GROUND_VELOCITY;
+ vel->x -= GROUND_VELOCITY;
} else if (kue.sym == SDLK_d) {
if (auto vel = player.component<Velocity>(); vel)
- vel->x -= GROUND_VELOCITY;
+ vel->x += GROUND_VELOCITY;
}
}
}
@@ -66,10 +66,10 @@ void PlayerSystem::receive(const KeyUpEvent& kue)
if (player.valid()) {
if (kue.sym == SDLK_a) {
if (auto vel = player.component<Velocity>(); vel)
- vel->x -= GROUND_VELOCITY;
+ vel->x += GROUND_VELOCITY;
} else if (kue.sym == SDLK_d) {
if (auto vel = player.component<Velocity>(); vel)
- vel->x += GROUND_VELOCITY;
+ vel->x -= GROUND_VELOCITY;
}
}
}