diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-07-27 19:37:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 19:37:18 +0300 |
commit | 0a6f28209e2be86462428a6f779b465e3604e831 (patch) | |
tree | b968655ced36ef127b028819e9edb509861a76ca /indra/llaudio/llaudioengine.cpp | |
parent | e008b44fd88be83426812e67707896e970947c49 (diff) | |
parent | 817bc25b2732dc23295e6a7ac0da5ad142e33434 (diff) |
Merge branch 'develop' into marchcat/b-develop
Diffstat (limited to 'indra/llaudio/llaudioengine.cpp')
-rw-r--r-- | indra/llaudio/llaudioengine.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/indra/llaudio/llaudioengine.cpp b/indra/llaudio/llaudioengine.cpp index 3697422ac8..613c408157 100644 --- a/indra/llaudio/llaudioengine.cpp +++ b/indra/llaudio/llaudioengine.cpp @@ -1827,7 +1827,17 @@ bool LLAudioData::load() { // Hrm. Right now, let's unset the buffer, since it's empty. gAudiop->cleanupBuffer(mBufferp); - mBufferp = NULL; + mBufferp = nullptr; + + if (!gDirUtilp->fileExists(wav_path)) + { + mHasLocalData = false; + mHasDecodedData = false; + mHasCompletedDecode = false; + mHasDecodeFailed = false; + mHasWAVLoadFailed = false; + gAudiop->preloadSound(mID); + } return false; } |