Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;