And once again replace the Xcode specific build fixes that I clobbered
This commit is contained in:
parent
9bc9e47781
commit
e7a8352548
1 changed files with 13 additions and 1 deletions
|
@ -18,12 +18,19 @@ enum { PATH_LIMIT = 32768 };
|
||||||
//#define VGM_USE_G7221
|
//#define VGM_USE_G7221
|
||||||
|
|
||||||
#include "streamfile.h"
|
#include "streamfile.h"
|
||||||
|
#ifdef BUILD_VGMSTREAM
|
||||||
#include "coding/g72x_state.h"
|
#include "coding/g72x_state.h"
|
||||||
|
#else
|
||||||
|
#include "g72x_state.h"
|
||||||
|
#endif
|
||||||
#ifdef VGM_USE_VORBIS
|
#ifdef VGM_USE_VORBIS
|
||||||
|
#ifdef __APPLE__
|
||||||
|
#define __MACOSX__
|
||||||
|
#endif
|
||||||
#include <vorbis/vorbisfile.h>
|
#include <vorbis/vorbisfile.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef VGM_USE_MPEG
|
#ifdef VGM_USE_MPEG
|
||||||
#include <mpg123.h>
|
#include <mpg123/mpg123.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef VGM_USE_G7221
|
#ifdef VGM_USE_G7221
|
||||||
#include "g7221.h"
|
#include "g7221.h"
|
||||||
|
@ -42,8 +49,13 @@ enum { PATH_LIMIT = 32768 };
|
||||||
#include <maiatrac3plus.h>
|
#include <maiatrac3plus.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef BUILD_VGMSTREAM
|
||||||
#include "coding/acm_decoder.h"
|
#include "coding/acm_decoder.h"
|
||||||
#include "coding/nwa_decoder.h"
|
#include "coding/nwa_decoder.h"
|
||||||
|
#else
|
||||||
|
#include "acm_decoder.h"
|
||||||
|
#include "nwa_decoder.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* The encoding type specifies the format the sound data itself takes */
|
/* The encoding type specifies the format the sound data itself takes */
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
|
Loading…
Reference in a new issue