From 8b32219dbc69c862774a8f72c416f8be73510129 Mon Sep 17 00:00:00 2001 From: Erik Hofman Date: Thu, 21 Jul 2016 09:54:11 +0200 Subject: [PATCH] Make stereo files a SG_POPUP message --- simgear/sound/soundmgr_openal.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/sound/soundmgr_openal.cxx b/simgear/sound/soundmgr_openal.cxx index c0dc25f6..5e76d24f 100644 --- a/simgear/sound/soundmgr_openal.cxx +++ b/simgear/sound/soundmgr_openal.cxx @@ -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"); -- 2.39.5