From: ehofman Date: Fri, 16 Jul 2004 21:00:46 +0000 (+0000) Subject: Weak excuse, but it's getting late. Do clipping right this time. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ca10cb2d376cc25988099ee1f406ee1b6d4f0228;p=simgear.git Weak excuse, but it's getting late. Do clipping right this time. --- diff --git a/simgear/sound/xmlsound.cxx b/simgear/sound/xmlsound.cxx index 83cb5d86..4e866b85 100644 --- a/simgear/sound/xmlsound.cxx +++ b/simgear/sound/xmlsound.cxx @@ -406,15 +406,14 @@ SGXmlSound::update (double dt) // Change sample state // _sample->set_pitch( pitch_offset + pitch ); - _sample->set_volume( volume_offset + volume ); - if ((volume_offset + volume ) > 1.0) { _sample->set_volume( 1.0 ); SG_LOG(SG_GENERAL, SG_WARN, - "WARNING: Volume larger than 1.0 for configuration for '" << _name - << "' clipping ..."); - } + "Volume larger than 1.0 in configuration for '" << _name + << "', clipping."); + } else + _sample->set_volume( volume_offset + volume ); //