diff options
| -rw-r--r-- | sound/mixer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp index 20495e94ab..da5952ecf4 100644 --- a/sound/mixer.cpp +++ b/sound/mixer.cpp @@ -278,7 +278,7 @@ int SoundMixer::playVorbis(PlayingSoundHandle *handle, OggVorbis_File *ov_file, void SoundMixer::mix(int16 *buf, uint len) { StackLock lock(_mutex); - if (_premixProc) { + if (_premixProc && !_paused) { int i; _premixProc(_premixParam, buf, len); // Convert mono data from the premix proc to stereo |
