From e74c8587bd8bbf7f5382eea52e76cff9a3bbefa1 Mon Sep 17 00:00:00 2001 From: ehofman Date: Fri, 20 Jun 2003 19:44:41 +0000 Subject: [PATCH] Increase the maximum number of simultanious audio streams to the maximum defined by plib --- simgear/sound/soundmgr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2