]> git.mxchange.org Git - simgear.git/commitdiff
Increase the maximum number of simultanious audio streams to the maximum defined...
authorehofman <ehofman>
Fri, 20 Jun 2003 19:44:41 +0000 (19:44 +0000)
committerehofman <ehofman>
Fri, 20 Jun 2003 19:44:41 +0000 (19:44 +0000)
simgear/sound/soundmgr.cxx

index 84605cfdc178856df53c5d5a1cd904262b537d7e..31065656c5280bb6ac4f4a35b894d9d8349b0842 100644 (file)
@@ -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;