r513 - trunk/code/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Jan 21 10:09:35 EST 2006


Author: tma
Date: 2006-01-21 10:09:35 -0500 (Sat, 21 Jan 2006)
New Revision: 513

Modified:
   trunk/code/client/snd_codec.c
   trunk/code/client/snd_codec_ogg.c
Log:
* Fix to ability to diabled Ogg Vorbis


Modified: trunk/code/client/snd_codec.c
===================================================================
--- trunk/code/client/snd_codec.c	2006-01-21 01:35:42 UTC (rev 512)
+++ trunk/code/client/snd_codec.c	2006-01-21 15:09:35 UTC (rev 513)
@@ -97,7 +97,7 @@
 {
 	codecs = NULL;
 	S_CodecRegister(&wav_codec);
-#ifdef USE_CODEC_VORBIS
+#if USE_CODEC_VORBIS
 	S_CodecRegister(&ogg_codec);
 #endif
 }

Modified: trunk/code/client/snd_codec_ogg.c
===================================================================
--- trunk/code/client/snd_codec_ogg.c	2006-01-21 01:35:42 UTC (rev 512)
+++ trunk/code/client/snd_codec_ogg.c	2006-01-21 15:09:35 UTC (rev 513)
@@ -23,7 +23,7 @@
 */
 
 // OGG support is enabled by this define
-#ifdef USE_CODEC_VORBIS
+#if USE_CODEC_VORBIS
 
 // includes for the Q3 sound system
 #include "client.h"




More information about the quake3-commits mailing list