From 7d7b9324f1f0db14648fb9fe32256d7942af77b9 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 16 Mar 2008 14:51:37 +0000 Subject: somewhat smoother network play, player assets, client pif updates --- src/client/input.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/input.cc') diff --git a/src/client/input.cc b/src/client/input.cc index 3b2db09..4d0f54b 100644 --- a/src/client/input.cc +++ b/src/client/input.cc @@ -70,13 +70,13 @@ void keypressed(const SDL_keysym &keysym) break; case SDLK_KP_PLUS: // TODO set core entity params - local_thrust += 0.08f; + local_thrust += 0.02f; if (local_thrust > 1.0f) local_thrust = 1.0f; break; case SDLK_KP_MINUS: // TODO set core entity params - local_thrust -= 0.1f; + local_thrust -= 0.025f; if (local_thrust < 0.0f) local_thrust = 0.0f; break; -- cgit v1.2.3