]> git.mxchange.org Git - simgear.git/commitdiff
Make stereo files a SG_POPUP message
authorErik Hofman <erik@ehofman.com>
Thu, 21 Jul 2016 07:54:11 +0000 (09:54 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 13 Aug 2016 08:21:16 +0000 (10:21 +0200)
simgear/sound/soundmgr_openal.cxx

index c0dc25f6f16190c11bc0e8b5123cf363ce671aba..5e76d24f322c4efc100411288f0a3b9249f46593 100644 (file)
@@ -588,11 +588,11 @@ unsigned int SGSoundMgr::request_buffer(SGSoundSample *sample)
             break;
 
         case SG_SAMPLE_STEREO16:
-            SG_LOG(SG_SOUND, SG_ALERT, "Stereo sound detected: " << sample->get_sample_name());
+            SG_LOG(SG_SOUND, SG_POPUP, "Stereo sound detected:\n" << sample->get_sample_name() << "\nUse two separate mono files instead if required.");
             format = AL_FORMAT_STEREO16;
             break;
         case SG_SAMPLE_STEREO8:
-            SG_LOG(SG_SOUND, SG_ALERT, "Stereo sound detected: " << sample->get_sample_name());
+            SG_LOG(SG_SOUND, SG_POPUP, "Stereo sound detected:\n" << sample->get_sample_name() << "\nUse two separate mono files instead if required.");
             format = AL_FORMAT_STEREO8;
         default:
             SG_LOG(SG_SOUND, SG_ALERT, "unsupported audio format");