diff options
author | callum_linden <none@none> | 2013-04-17 15:46:40 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2013-04-17 15:46:40 -0700 |
commit | 1fa45e7448c82b9c242aafce0f449f925d620e89 (patch) | |
tree | c0e00019ce65e558844184fcad7a6e8196ec96d2 | |
parent | 623cb0c39fed147600afe1298d25c5153a6a96a2 (diff) |
Fix for Linux build now that gcc upgraded to 4.6 by default
-rw-r--r-- | indra/llaudio/llaudioengine_fmodex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llaudio/llaudioengine_fmodex.cpp b/indra/llaudio/llaudioengine_fmodex.cpp index 40a43884a1..183b2f94bc 100644 --- a/indra/llaudio/llaudioengine_fmodex.cpp +++ b/indra/llaudio/llaudioengine_fmodex.cpp @@ -476,7 +476,7 @@ bool LLAudioChannelFMODEX::updateBuffer() if (mCurrentSourcep) { // SJB: warnings can spam and hurt framerate, disabling - FMOD_RESULT result; + //FMOD_RESULT result; result = mChannelp->setVolume(getSecondaryGain() * mCurrentSourcep->getGain()); //Check_FMOD_Error(result, "FMOD::Channel::setVolume"); |