Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2007-10-21 15:18:50 +0000
committerStijn Buys <ingar@osirion.org>2007-10-21 15:18:50 +0000
commit97cbb7514135ec81803e746f0b549e9f95abbecc (patch)
tree6d61b17ed1485a5488522dd41011a4225cde18b0 /src/game/ship.cc
parent783545505aa51e4f908932fffb1f8362ad898d44 (diff)
added basic file loader
Diffstat (limited to 'src/game/ship.cc')
-rw-r--r--src/game/ship.cc9
1 files changed, 4 insertions, 5 deletions
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()