From 4eaeb91cc45da46bd91f0f239ee04a6fced8f77d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 11 Apr 2003 23:52:18 +0000 Subject: [PATCH] disable debug --- libs/audio/renderer/snd_mem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/audio/renderer/snd_mem.c b/libs/audio/renderer/snd_mem.c index 21e7bb1c8..709621ef8 100644 --- a/libs/audio/renderer/snd_mem.c +++ b/libs/audio/renderer/snd_mem.c @@ -169,7 +169,7 @@ SND_GetCache (long samples, int rate, int inwidth, int channels, width = snd_loadas8bit->int_val ? 1 : 2; stepscale = (float) rate / shm->speed; // usually 0.5, 1, or 2 size = samples / stepscale; -printf ("%ld %d\n", samples, size); +//printf ("%ld %d\n", samples, size); size *= width * channels; sc = allocator (&block->cache, sizeof (sfxbuffer_t) + size, sfx->name); if (!sc) @@ -198,7 +198,7 @@ SND_ResampleMono (sfxbuffer_t *sc, byte *data, int length) stepscale = (float) inrate / shm->speed; // usually 0.5, 1, or 2 outcount = length / stepscale; -printf ("%d %d\n", length, outcount); +//printf ("%d %d\n", length, outcount); sc->sfx->length = outcount; if (info->loopstart != -1)