* Fix to ability to diabled Ogg Vorbis

This commit is contained in:
Tim Angus 2006-01-21 15:09:35 +00:00
parent 7913ec3c4b
commit 893629fb0f
2 changed files with 2 additions and 2 deletions

View file

@ -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
}