diff options
author | Stijn Buys <ingar@osirion.org> | 2008-10-19 17:47:12 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-10-19 17:47:12 +0000 |
commit | 9f2e49593639a9f1f3e5f4f7b690ff364afefd56 (patch) | |
tree | 3fd34e1e3b0d6c60aa74c30b65888fec5cf9a26f /src/game/example | |
parent | 8ccfd7747bddf3fad75b0f358a64e66646b54032 (diff) |
bugfix for the example module spectator
Diffstat (limited to 'src/game/example')
-rw-r--r-- | src/game/example/spectator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/example/spectator.cc b/src/game/example/spectator.cc index 7b3a165..a2c4353 100644 --- a/src/game/example/spectator.cc +++ b/src/game/example/spectator.cc @@ -32,7 +32,7 @@ Spectator::~Spectator() void Spectator::frame(float elapsed) { // only update if necessary - if (!entity_speed && ! target_thrust && !target_direction && !target_pitch && !target_roll) + if (!entity_speed && ! target_thrust && !target_direction && !target_pitch && !target_roll && !target_strafe && !target_afterburner) return; // assign thrust value from input |