diff options
| author | XTra.KrazzY <XTra.KrazzY@gmail.com> | 2009-11-07 23:56:41 +0000 |
|---|---|---|
| committer | XTra.KrazzY <XTra.KrazzY@gmail.com> | 2009-11-07 23:56:41 +0000 |
| commit | b9794a9533a4ea8ffedf33802bd5feca7f278825 (patch) | |
| tree | d626ea9046420a34c55628cc180d3ba73ea2bc91 /Source | |
| parent | db372f0e32992fed2bee264f3084266950136c1a (diff) | |
Continuing godisgovernment's fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4511 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Plugins/Plugin_DSP_LLE/Src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp b/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp index a6e9b9665e..3d44f89979 100644 --- a/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp +++ b/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp @@ -363,6 +363,7 @@ void DSP_SendAIBuffer(unsigned int address, int sample_rate) void DSP_ClearAudioBuffer() { - soundStream->Clear(); + if(soundStream) + soundStream->Clear(); } |
