snes9x/apu/bapu/dsp/blargg_config.h

29 lines
702 B
C
Raw Normal View History

2011-06-12 06:25:22 +00:00
// snes_spc 0.9.0 user configuration file. Don't replace when updating library.
// snes_spc 0.9.0
#ifndef BLARGG_CONFIG_H
#define BLARGG_CONFIG_H
// Uncomment to disable debugging checks
#if !defined(DEBUGGER) && !defined(_DEBUG)
2011-06-12 06:25:22 +00:00
#define NDEBUG 1
2017-10-01 12:49:48 +00:00
#endif
2011-06-12 06:25:22 +00:00
// Uncomment to enable platform-specific (and possibly non-portable) optimizations
2018-08-28 21:36:29 +00:00
#if !defined(__CELLOS_LV2__)
2018-04-13 16:56:06 +00:00
#define BLARGG_NONPORTABLE 1
2018-08-28 21:36:29 +00:00
#endif
2011-06-12 06:25:22 +00:00
// Uncomment if automatic byte-order determination doesn't work
//#define BLARGG_BIG_ENDIAN 1
// Uncomment if you get errors in the bool section of blargg_common.h
//#define BLARGG_COMPILER_HAS_BOOL 1
// Use standard config.h if present
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#endif