From 893629fb0f13f8711c8a521d65c18aa88a45b44c Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sat, 21 Jan 2006 15:09:35 +0000 Subject: [PATCH] * Fix to ability to diabled Ogg Vorbis --- code/client/snd_codec.c | 2 +- code/client/snd_codec_ogg.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/client/snd_codec.c b/code/client/snd_codec.c index 6b92da8b..666452b6 100644 --- a/code/client/snd_codec.c +++ b/code/client/snd_codec.c @@ -97,7 +97,7 @@ void S_CodecInit() { codecs = NULL; S_CodecRegister(&wav_codec); -#ifdef USE_CODEC_VORBIS +#if USE_CODEC_VORBIS S_CodecRegister(&ogg_codec); #endif } diff --git a/code/client/snd_codec_ogg.c b/code/client/snd_codec_ogg.c index 20462fcb..464d8d38 100644 --- a/code/client/snd_codec_ogg.c +++ b/code/client/snd_codec_ogg.c @@ -23,7 +23,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ // OGG support is enabled by this define -#ifdef USE_CODEC_VORBIS +#if USE_CODEC_VORBIS // includes for the Q3 sound system #include "client.h"