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//#define NDEBUG 1 9 10// Uncomment to enable platform-specific (and possibly non-portable) optimizations 11//#define BLARGG_NONPORTABLE 1 12 13// Uncomment if automatic byte-order determination doesn't work 14//#define BLARGG_BIG_ENDIAN 1 15 16// Uncomment if you get errors in the bool section of blargg_common.h 17//#define BLARGG_COMPILER_HAS_BOOL 1 18 19// Use standard config.h if present 20#ifdef HAVE_CONFIG_H 21 #include "config.h" 22#endif 23 24#endif 25 26