diff options
author | Jacek Antonelli | 2008-08-15 23:44:48 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:48 -0500 |
commit | 9b4f54c826ffa4f94efa866068c9d6ecdfb4b424 (patch) | |
tree | 2f8ae193ab487088962e628f1ee9dee2f5901f01 /linden/indra/llaudio/audioengine_fmod.cpp | |
parent | Second Life viewer sources 1.13.2.12 (diff) | |
download | meta-impy-9b4f54c826ffa4f94efa866068c9d6ecdfb4b424.zip meta-impy-9b4f54c826ffa4f94efa866068c9d6ecdfb4b424.tar.gz meta-impy-9b4f54c826ffa4f94efa866068c9d6ecdfb4b424.tar.bz2 meta-impy-9b4f54c826ffa4f94efa866068c9d6ecdfb4b424.tar.xz |
Second Life viewer sources 1.13.2.15
Diffstat (limited to 'linden/indra/llaudio/audioengine_fmod.cpp')
-rw-r--r-- | linden/indra/llaudio/audioengine_fmod.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llaudio/audioengine_fmod.cpp b/linden/indra/llaudio/audioengine_fmod.cpp index a4ddd1f..a69212e 100644 --- a/linden/indra/llaudio/audioengine_fmod.cpp +++ b/linden/indra/llaudio/audioengine_fmod.cpp | |||
@@ -1136,7 +1136,7 @@ void * F_CALLBACKAPI windCallback(void *originalbuffer, void *newbuffer, int len | |||
1136 | double nextSample; | 1136 | double nextSample; |
1137 | 1137 | ||
1138 | // start with white noise | 1138 | // start with white noise |
1139 | nextSample = frand(2.0f) - 1.0f; | 1139 | nextSample = llclamp((ll_frand(2.0f) - 1.0f), -1.0f, 1.0f); |
1140 | 1140 | ||
1141 | #if 1 // LLAE_WIND_PINK apply pinking filter | 1141 | #if 1 // LLAE_WIND_PINK apply pinking filter |
1142 | gbuf0 = 0.997f * gbuf0 + 0.0126502f * nextSample; | 1142 | gbuf0 = 0.997f * gbuf0 + 0.0126502f * nextSample; |