[quake3-commits] r2255 - trunk/code/client
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Mon Jun 18 12:00:38 EDT 2012
Author: ztm
Date: 2012-06-18 12:00:38 -0400 (Mon, 18 Jun 2012)
New Revision: 2255
Modified:
trunk/code/client/snd_mem.c
Log:
Call sound files 'audio' not 'wav' in debug messages.
Modified: trunk/code/client/snd_mem.c
===================================================================
--- trunk/code/client/snd_mem.c 2012-06-18 15:58:48 UTC (rev 2254)
+++ trunk/code/client/snd_mem.c 2012-06-18 16:00:38 UTC (rev 2255)
@@ -219,11 +219,11 @@
return qfalse;
if ( info.width == 1 ) {
- Com_DPrintf(S_COLOR_YELLOW "WARNING: %s is a 8 bit wav file\n", sfx->soundName);
+ Com_DPrintf(S_COLOR_YELLOW "WARNING: %s is a 8 bit audio file\n", sfx->soundName);
}
if ( info.rate != 22050 ) {
- Com_DPrintf(S_COLOR_YELLOW "WARNING: %s is not a 22kHz wav file\n", sfx->soundName);
+ Com_DPrintf(S_COLOR_YELLOW "WARNING: %s is not a 22kHz audio file\n", sfx->soundName);
}
samples = Hunk_AllocateTempMemory(info.samples * sizeof(short) * 2);
More information about the quake3-commits
mailing list