1// snes_spc 0.9.0 user configuration file. Don't replace when updating library.
2
3// snes_spc 0.9.0
4#ifndef BLARGG_CONFIG_H
5#define BLARGG_CONFIG_H
6
7// Uncomment to disable debugging checks
8#if !defined(DEBUGGER) && !defined(_DEBUG)
9#define NDEBUG 1
10#endif
11
12// Uncomment to enable platform-specific (and possibly non-portable) optimizations
13#if !defined(__CELLOS_LV2__)
14#define BLARGG_NONPORTABLE 1
15#endif
16
17// Uncomment if automatic byte-order determination doesn't work
18//#define BLARGG_BIG_ENDIAN 1
19
20// Uncomment if you get errors in the bool section of blargg_common.h
21//#define BLARGG_COMPILER_HAS_BOOL 1
22
23// Use standard config.h if present
24#ifdef HAVE_CONFIG_H
25 #include "config.h"
26#endif
27
28#endif
29