X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=snd_mem.c;h=7422a01b1b9fe1c98d03f9459a991e871cb30d7d;hp=f152120e4cb63705ad2912baf5260840fc05217f;hb=5bdc0879026939f551a3ff217064732d59731be2;hpb=85f59b573580b932d59c71d46f6fb15d1c7c66cd diff --git a/snd_mem.c b/snd_mem.c index f152120e..7422a01b 100644 --- a/snd_mem.c +++ b/snd_mem.c @@ -38,8 +38,8 @@ size_t ResampleSfx (const qbyte *in_data, size_t in_length, const snd_format_t* srclength = in_length * in_format->channels; outcount = (double)in_length * shm->format.speed / in_format->speed; - Con_DPrintf("ResampleSfx(%s): %d samples @ %dHz -> %d samples @ %dHz\n", - sfxname, in_length, in_format->speed, outcount, shm->format.speed); + //Con_DPrintf("ResampleSfx(%s): %d samples @ %dHz -> %d samples @ %dHz\n", + // sfxname, in_length, in_format->speed, outcount, shm->format.speed); // Trivial case (direct transfer) if (in_format->speed == shm->format.speed) @@ -178,7 +178,7 @@ qboolean S_LoadSound (sfx_t *s, qboolean complain) if (len >= sizeof (namebuffer)) { // name too long - Con_DPrintf("S_LoadSound: name \"%s\" is too long\n", s->name); + Con_Printf("S_LoadSound: name \"%s\" is too long\n", s->name); return false; } if (S_LoadWavFile (namebuffer, s)) @@ -194,7 +194,7 @@ qboolean S_LoadSound (sfx_t *s, qboolean complain) if (len >= sizeof (namebuffer)) { // name too long - Con_DPrintf("S_LoadSound: name \"%s\" is too long\n", s->name); + Con_Printf("S_LoadSound: name \"%s\" is too long\n", s->name); return false; } if (S_LoadWavFile (namebuffer, s))