Quieten down writing to fmod.log - only write errors - speculate this is related to audio stutter/frame stalls

master
callum_linden 2013-05-20 15:09:42 -07:00
parent 9ef6449455
commit 1f9710ebcb
1 changed files with 3 additions and 0 deletions

View File

@ -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;