diff options
author | Stijn Buys <ingar@osirion.org> | 2008-05-25 10:30:46 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-05-25 10:30:46 +0000 |
commit | 210a3278e709b3cbbf2fdd6ef21a2150485b9d97 (patch) | |
tree | b0bc7e1180fbcd4091a853d213077c6dad6fe3b4 /src | |
parent | 274fcfe8d3fc5b54b345d79fab6dd4bbdb544892 (diff) |
adjusts camera tracking speed
Diffstat (limited to 'src')
-rw-r--r-- | src/client/camera.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/camera.cc b/src/client/camera.cc index 21bf930..cbed115 100644 --- a/src/client/camera.cc +++ b/src/client/camera.cc @@ -190,7 +190,7 @@ void draw(float seconds) float angle; float side; float u; - const float cam_speed = seconds * 4 ; + const float cam_speed = seconds; math::Vector3f n; math::Vector3f p; |