From c99975c73ae2941751d86d3b8466454c5ad122c0 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Wed, 5 Sep 2007 22:05:32 +0000 Subject: * Merge of ioq3-r1163 + SDL everywhere + New R_LoadImage + net_ip.c + Window icon + GUI based dedicated server support + Compile time linked OpenGL * Remove ui_menuFiles cvar --- src/client/snd_dma.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/client/snd_dma.c') diff --git a/src/client/snd_dma.c b/src/client/snd_dma.c index 7e7897b1..ec92da69 100644 --- a/src/client/snd_dma.c +++ b/src/client/snd_dma.c @@ -617,11 +617,7 @@ void S_Base_ClearSoundBuffer( void ) { SNDDMA_BeginPainting (); if (dma.buffer) - // TTimo: due to a particular bug workaround in linux sound code, - // have to optionally use a custom C implementation of Com_Memset - // not affecting win32, we have #define Snd_Memset Com_Memset - // https://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=371 - Snd_Memset(dma.buffer, clear, dma.samples * dma.samplebits/8); + Com_Memset(dma.buffer, clear, dma.samples * dma.samplebits/8); SNDDMA_Submit (); } -- cgit