diff options
| author | simon <none@none> | 2013-05-29 14:42:19 -0700 |
|---|---|---|
| committer | simon <none@none> | 2013-05-29 14:42:19 -0700 |
| commit | 507ce0d84fc3e7717c7c9ae58dcdae7785936f65 (patch) | |
| tree | a7dde82693b2297a27024a00624c1ec9f81c2d0c /indra/llaudio/llaudioengine_fmodex.cpp | |
| parent | 473474b94969799d2835191072c5bca1b7d431d8 (diff) | |
| parent | 3698aece0d2b396b55b46189e8ea7ee02da9483b (diff) | |
Merge downstream code
Diffstat (limited to 'indra/llaudio/llaudioengine_fmodex.cpp')
| -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; |
