not reversed input for Camera...

This commit is contained in:
Stiffly
2014-05-12 22:05:56 +02:00
parent 457ee84903
commit 5d48ea7e2a
+4 -4
View File
@@ -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")
{