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
This commit is contained in:
Spoike 2015-09-02 23:25:00 +00:00
parent a6c66182ba
commit 08b809de93

View file

@ -160,7 +160,7 @@ static sfxcache_t *OV_DecodeSome(struct sfx_s *sfx, struct sfxcache_s *buf, ssam
if (start < dec->decodedbytestart) if (start < dec->decodedbytestart)
{ {
Con_Printf("Rewound to %i\n", start); // Con_Printf("Rewound to %i\n", start);
dec->failed = false; dec->failed = false;
/*something rewound, purge clear the buffer*/ /*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->decodedbytecount = 0;
dec->decodedbytestart = start; dec->decodedbytestart = start;
Con_Printf("trim < 0\n"); // Con_Printf("trim < 0\n");
} }
else if (trim > dec->decodedbytecount) else if (trim > dec->decodedbytecount)
{ {
dec->decodedbytecount = 0; dec->decodedbytecount = 0;
dec->decodedbytestart = start; dec->decodedbytestart = start;
Con_Printf("trim > count\n"); // Con_Printf("trim > count\n");
} }
else 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 //FIXME: retain an extra half-second for dual+ sound devices running slightly out of sync
memmove(dec->decodedbuffer, dec->decodedbuffer + trim, dec->decodedbytecount - trim); memmove(dec->decodedbuffer, dec->decodedbuffer + trim, dec->decodedbytecount - trim);
dec->decodedbytecount -= trim; dec->decodedbytecount -= trim;