mirror of
https://github.com/UberGames/ioef.git
synced 2025-02-07 08:22:05 +00:00
* Fix to ability to diabled Ogg Vorbis
This commit is contained in:
parent
7913ec3c4b
commit
893629fb0f
2 changed files with 2 additions and 2 deletions
|
@ -97,7 +97,7 @@ void S_CodecInit()
|
||||||
{
|
{
|
||||||
codecs = NULL;
|
codecs = NULL;
|
||||||
S_CodecRegister(&wav_codec);
|
S_CodecRegister(&wav_codec);
|
||||||
#ifdef USE_CODEC_VORBIS
|
#if USE_CODEC_VORBIS
|
||||||
S_CodecRegister(&ogg_codec);
|
S_CodecRegister(&ogg_codec);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// OGG support is enabled by this define
|
// OGG support is enabled by this define
|
||||||
#ifdef USE_CODEC_VORBIS
|
#if USE_CODEC_VORBIS
|
||||||
|
|
||||||
// includes for the Q3 sound system
|
// includes for the Q3 sound system
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
|
|
Loading…
Reference in a new issue