diff --git a/src/Systems/FreeSteeringSystem.cpp b/src/Systems/FreeSteeringSystem.cpp index 8373c80..d59b475 100755 --- a/src/Systems/FreeSteeringSystem.cpp +++ b/src/Systems/FreeSteeringSystem.cpp @@ -56,19 +56,19 @@ bool Systems::FreeSteeringSystem::FreeSteeringInputController::OnCommand(const E } else if (event.Command == "+cam_right") { - Movement.x += 1.f; + Movement.x -= 1.f; } else if (event.Command == "-cam_right") { - Movement.x -= 1.f; + Movement.x += 1.f; } else if (event.Command == "+cam_left") { - Movement.x += -1.f; + Movement.x -= -1.f; } else if (event.Command == "-cam_left") { - Movement.x -= -1.f; + Movement.x += -1.f; } else if (event.Command == "+up") {