From 97cbb7514135ec81803e746f0b549e9f95abbecc Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 21 Oct 2007 15:18:50 +0000 Subject: added basic file loader --- src/game/ship.cc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/game/ship.cc') diff --git a/src/game/ship.cc b/src/game/ship.cc index a24be0d..84e9f41 100644 --- a/src/game/ship.cc +++ b/src/game/ship.cc @@ -7,7 +7,6 @@ // project headers #include "common/functions.h" -#include "common/osirion.h" #include "ship.h" @@ -20,11 +19,11 @@ Ship::Ship() thrust = 0; // ship specs - acceleration = 6 * GAMESCALE; - max_speed = 16.0f * GAMESCALE; + acceleration = 1.5f; + max_speed = 4.0f; - max_yaw_offset = 45; - yaw_speed = 4; + max_yaw_offset = 45.0f; + yaw_speed = 4.0f; } Ship::~Ship() -- cgit v1.2.3