From: ehofman Date: Tue, 3 Jun 2003 19:37:21 +0000 (+0000) Subject: Remove an unused variable X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5167dee0e35906ed36d5ec942d722cc9e05cdc64;p=simgear.git Remove an unused variable --- diff --git a/simgear/sound/soundmgr.cxx b/simgear/sound/soundmgr.cxx index 3028b77e..84605cfd 100644 --- a/simgear/sound/soundmgr.cxx +++ b/simgear/sound/soundmgr.cxx @@ -92,7 +92,7 @@ void SGSimpleSound::play( slScheduler *sched, bool looped ) { sched->addSampleEnvelope(sample, 0, 1, volume_envelope, SL_VOLUME_ENVELOPE); } -void SGSimpleSound::stop( slScheduler *sched, bool quick ) { +void SGSimpleSound::stop( slScheduler *sched ) { sched->stopSample( sample ); }