diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-01 17:24:01 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-01 17:24:01 -0400 |
commit | 5576c2d0b0130a0b3bfbef8eb09cd9297d79fd09 (patch) | |
tree | bb32ac4cc03fd324f4a738b55e04c4811be459fb | |
parent | 0b6a4395579cd3fabf70b265499da77d73558f38 (diff) |
fix player keys...
-rw-r--r-- | src/player.cpp | 8 |
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; } } } |