From e994e622b5ec10990a364c3bedb06fc7912b18ae Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 27 Mar 2007 03:42:11 +0000 Subject: [PATCH] I'm getting pretty annoyed with this cache-release bug :P --- libs/audio/renderer/snd_mem.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libs/audio/renderer/snd_mem.c b/libs/audio/renderer/snd_mem.c index e071cb474..031bc7b93 100644 --- a/libs/audio/renderer/snd_mem.c +++ b/libs/audio/renderer/snd_mem.c @@ -108,8 +108,14 @@ SND_CacheRelease (sfx_t *sfx) block->buffer = 0; // due to the possibly asynchronous nature of the mixer, the cache // may have been flushed behind our backs - if (block->cache.data) + if (block->cache.data) { + if (!Cache_ReadLock (&bloc->cache)) { + Sys_Printf ("WARNING: taniwha screwed up in the sound engine: %s\n", + sfx->name); + return; + } Cache_Release (&block->cache); + } } sfxbuffer_t *