diff options
| author | Merov Linden <merov@lindenlab.com> | 2013-05-30 14:07:59 -0700 |
|---|---|---|
| committer | Merov Linden <merov@lindenlab.com> | 2013-05-30 14:07:59 -0700 |
| commit | 0b4b92cbbfff5cd5ef6ed697a7605db7686c9952 (patch) | |
| tree | 4211ad2db22cec252f2f45c1f47356b6fe73daf9 /indra/llaudio | |
| parent | 168f4d8de0bf4f6a211366d5183a777b577b5cfe (diff) | |
| parent | dcfb18373eca7986a73d8b9a1d34970cc0a23ed9 (diff) | |
Pull merge from lindenlab/viewer-release
Diffstat (limited to 'indra/llaudio')
| -rw-r--r-- | indra/llaudio/llaudioengine_fmodex.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llaudio/llaudioengine_fmodex.cpp b/indra/llaudio/llaudioengine_fmodex.cpp index fe6dedcd03..45fc3186f4 100644 --- a/indra/llaudio/llaudioengine_fmodex.cpp +++ b/indra/llaudio/llaudioengine_fmodex.cpp @@ -104,6 +104,9 @@ bool LLAudioEngine_FMODEX::init(const S32 num_channels, void* userdata) //if(Check_FMOD_Error(result, "FMOD::Memory_Initialize")) // return false; + // turn off non-error log spam to fmod.log (TODO: why do we even have an fmod.log if we don't link against log lib?) + FMOD::Debug_SetLevel(FMOD_DEBUG_LEVEL_ERROR); + result = FMOD::System_Create(&mSystem); if(Check_FMOD_Error(result, "FMOD::System_Create")) return false; |
