Submit initial patch from FS#12176. Adds support for several new game music formats...
[kugel-rb.git] / apps / codecs / libgme / blargg_config.h
blob6490c15cfbcaa759444e6903d61f58b7414849b4
1 // Library configuration. Modify this file as necessary.
3 #ifndef BLARGG_CONFIG_H
4 #define BLARGG_CONFIG_H
6 // Uncomment to enable platform-specific optimizations
7 //#define BLARGG_NONPORTABLE 1
9 // Uncomment if automatic byte-order determination doesn't work
10 #ifdef ROCKBOX_BIG_ENDIAN
11 #define BLARGG_BIG_ENDIAN 1
12 #endif
14 // Uncomment if you get errors in the bool section of blargg_common.h
15 #define BLARGG_COMPILER_HAS_BOOL 1
17 // Uncomment to use fast gb apu implementation
18 // #define GB_APU_FAST 1
20 // Uncomment to remove agb emulation support
21 // #define GB_APU_NO_AGB 1
23 // Uncomment to emulate only nes apu
24 // #define NSF_EMU_APU_ONLY 1
26 // Uncomment to remove vrc7 apu support
27 // #define NSF_EMU_NO_VRC7 1
29 // Uncomment to remove fmopl apu support
30 // #define KSS_EMU_NO_FMOPL 1
32 // To handle undefined reference to assert
33 #define NDEBUG 1
35 // Use standard config.h if present
36 #define HAVE_CONFIG_H 1
38 #ifdef HAVE_CONFIG_H
39 #include "config.h"
40 #endif
42 #endif