diff options
author | Stijn Buys <ingar@osirion.org> | 2008-07-16 11:18:21 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-07-16 11:18:21 +0000 |
commit | 6937dfa2028f9db3295594a19da27b32f996241d (patch) | |
tree | 053a490a0dabe5b4e11c9aed330d81dc38ba1343 | |
parent | 4b8a6390b1dd6f0a10c2824c34a953832864d5fc (diff) |
disabled the thruster sound
-rw-r--r-- | src/client/input.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/input.cc b/src/client/input.cc index 10be405..da20456 100644 --- a/src/client/input.cc +++ b/src/client/input.cc @@ -236,7 +236,7 @@ void action_press(std::string const &action) /* -- thruster ------------------------------------ */ if (action.compare("+thrust") == 0) { if (local_thrust < 1.0f && singleclick) { - audio::play("ui/thruster"); + //audio::play("ui/thruster"); singleclick = false; } local_thrust += thruster_offset; @@ -244,7 +244,7 @@ void action_press(std::string const &action) } else if (action.compare("-thrust") == 0) { if (local_thrust > 0.0f && singleclick) { - audio::play("ui/thruster"); + //audio::play("ui/thruster"); singleclick = false; } local_thrust -= 2.0f * thruster_offset; |