mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
git-svn-id: http://bsnes-classic.googlecode.com/svn/trunk@54 fe182637-1eec-a322-cce2-af8e45122353
24 lines
620 B
C
24 lines
620 B
C
// 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
|
|
//#define NDEBUG 1
|
|
|
|
// Uncomment to enable platform-specific (and possibly non-portable) optimizations
|
|
//#define BLARGG_NONPORTABLE 1
|
|
|
|
// 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
|