Even more conversion, lots of superfluous macro removal
This commit is contained in:
@@ -24,9 +24,9 @@
|
||||
#include "quakedef.hpp"
|
||||
|
||||
#if defined(USE_CODEC_VORBIS)
|
||||
#include "snd_codec.h"
|
||||
#include "snd_codeci.h"
|
||||
#include "snd_vorbis.h"
|
||||
#include "snd_codec.hpp"
|
||||
#include "snd_codeci.hpp"
|
||||
#include "snd_vorbis.hpp"
|
||||
|
||||
#define OV_EXCLUDE_STATIC_CALLBACKS
|
||||
#if defined(VORBIS_USE_TREMOR)
|
||||
@@ -64,7 +64,7 @@ static ov_callbacks ovc_qfs =
|
||||
(long (*)(void *)) FS_ftell
|
||||
};
|
||||
|
||||
static qboolean S_VORBIS_CodecInitialize (void)
|
||||
static bool S_VORBIS_CodecInitialize (void)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@@ -73,7 +73,7 @@ static void S_VORBIS_CodecShutdown (void)
|
||||
{
|
||||
}
|
||||
|
||||
static qboolean S_VORBIS_CodecOpenStream (snd_stream_t *stream)
|
||||
static bool S_VORBIS_CodecOpenStream (snd_stream_t *stream)
|
||||
{
|
||||
OggVorbis_File *ovFile;
|
||||
vorbis_info *ovf_info;
|
||||
|
||||
Reference in New Issue
Block a user