From: ehofman Date: Fri, 20 Jun 2003 19:44:41 +0000 (+0000) Subject: Increase the maximum number of simultanious audio streams to the maximum defined... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e74c8587bd8bbf7f5382eea52e76cff9a3bbefa1;p=simgear.git Increase the maximum number of simultanious audio streams to the maximum defined by plib --- diff --git a/simgear/sound/soundmgr.cxx b/simgear/sound/soundmgr.cxx index 84605cfd..31065656 100644 --- a/simgear/sound/soundmgr.cxx +++ b/simgear/sound/soundmgr.cxx @@ -107,7 +107,7 @@ SGSoundMgr::SGSoundMgr() { if ( audio_sched->notWorking() ) { SG_LOG( SG_GENERAL, SG_ALERT, "Audio initialization failed!" ); } else { - audio_sched -> setMaxConcurrent ( 6 ); + audio_sched -> setMaxConcurrent ( SL_MAX_MIXERINPUTS ); audio_mixer = new smMixer;