summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Madarasz <graham@lindenlab.com>2013-05-20 16:40:48 -0700
committerGraham Madarasz <graham@lindenlab.com>2013-05-20 16:40:48 -0700
commitc7a9a2fcc130117778fb2f10a91dcd1ab16d0804 (patch)
treef20f7c1f4fed5b17cddbb8a002c1f6f4b8acca05
parenteaff189b45a09b4abb4bb4be15c17ff501995141 (diff)
parentaf134f9a2eebd597bfa424547556a3e79524050d (diff)
Merge
-rw-r--r--indra/llaudio/llaudioengine_fmodex.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llaudio/llaudioengine_fmodex.cpp b/indra/llaudio/llaudioengine_fmodex.cpp
index c2c3648ae8..0e789f9011 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;