From 6937dfa2028f9db3295594a19da27b32f996241d Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 16 Jul 2008 11:18:21 +0000 Subject: disabled the thruster sound --- src/client/input.cc | 4 ++-- 1 file 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; -- cgit v1.2.3