From 08b809de93a9b031ed17eaf1271eb4b255a9aee5 Mon Sep 17 00:00:00 2001 From: Spoike Date: Wed, 2 Sep 2015 23:25:00 +0000 Subject: [PATCH] I'm good at fucking stuff up - remove debug prints. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4981 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/snd_ov.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/engine/client/snd_ov.c b/engine/client/snd_ov.c index 8830b1bf..f14226b2 100644 --- a/engine/client/snd_ov.c +++ b/engine/client/snd_ov.c @@ -160,7 +160,7 @@ static sfxcache_t *OV_DecodeSome(struct sfx_s *sfx, struct sfxcache_s *buf, ssam if (start < dec->decodedbytestart) { - Con_Printf("Rewound to %i\n", start); +// Con_Printf("Rewound to %i\n", start); dec->failed = false; /*something rewound, purge clear the buffer*/ @@ -189,17 +189,17 @@ static sfxcache_t *OV_DecodeSome(struct sfx_s *sfx, struct sfxcache_s *buf, ssam { dec->decodedbytecount = 0; dec->decodedbytestart = start; - Con_Printf("trim < 0\n"); +// Con_Printf("trim < 0\n"); } else if (trim > dec->decodedbytecount) { dec->decodedbytecount = 0; dec->decodedbytestart = start; - Con_Printf("trim > count\n"); +// Con_Printf("trim > count\n"); } else { - Con_Printf("trim retain\n"); +// Con_Printf("trim retain\n"); //FIXME: retain an extra half-second for dual+ sound devices running slightly out of sync memmove(dec->decodedbuffer, dec->decodedbuffer + trim, dec->decodedbytecount - trim); dec->decodedbytecount -= trim;