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>2008-07-16 11:18:21 +0000
committerStijn Buys <ingar@osirion.org>2008-07-16 11:18:21 +0000
commit6937dfa2028f9db3295594a19da27b32f996241d (patch)
tree053a490a0dabe5b4e11c9aed330d81dc38ba1343 /src/client/input.cc
parent4b8a6390b1dd6f0a10c2824c34a953832864d5fc (diff)
disabled the thruster sound
Diffstat (limited to 'src/client/input.cc')
-rw-r--r--src/client/input.cc4
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;