From 5576c2d0b0130a0b3bfbef8eb09cd9297d79fd09 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 1 Sep 2019 17:24:01 -0400 Subject: fix player keys... --- src/player.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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(); vel) - vel->x += GROUND_VELOCITY; + vel->x -= GROUND_VELOCITY; } else if (kue.sym == SDLK_d) { if (auto vel = player.component(); 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(); vel) - vel->x -= GROUND_VELOCITY; + vel->x += GROUND_VELOCITY; } else if (kue.sym == SDLK_d) { if (auto vel = player.component(); vel) - vel->x += GROUND_VELOCITY; + vel->x -= GROUND_VELOCITY; } } } -- cgit v1.2.3