diff options
author | simon <none@none> | 2014-03-11 11:13:16 -0700 |
---|---|---|
committer | simon <none@none> | 2014-03-11 11:13:16 -0700 |
commit | cf2a180823e4e6daa0649ab54a5f7ed6ba14dbb2 (patch) | |
tree | 58d360f3ed849ddccae91b139b246318a1648c52 /indra/llaudio | |
parent | 2ae011dc5ce8b2112c65757ac85e0567165975cf (diff) | |
parent | c7aad1f7e3f643706d714b4426070174abc95145 (diff) |
Merge downstream code with 3.7.3 and new version number
Diffstat (limited to 'indra/llaudio')
-rw-r--r-- | indra/llaudio/lllistener_fmodex.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llaudio/lllistener_fmodex.cpp b/indra/llaudio/lllistener_fmodex.cpp index 2509a7aebc..31ab47a635 100644 --- a/indra/llaudio/lllistener_fmodex.cpp +++ b/indra/llaudio/lllistener_fmodex.cpp @@ -94,6 +94,11 @@ void LLListener_FMODEX::orient(LLVector3 up, LLVector3 at) //----------------------------------------------------------------------- void LLListener_FMODEX::commitDeferredChanges() { + if(!mSystem) + { + return; + } + mSystem->update(); } |