annotate snes_spc/blargg_config.h @ 6:a012d31df380
Made convert.pl work in parallel. Restored files in less than 2 minutes!
author |
Robert McIntyre <rlm@mit.edu> |
date |
Fri, 21 Oct 2011 07:23:22 -0700 |
parents |
e38dacceb958 |
children |
|
rev |
line source |
rlm@0
|
1 // snes_spc 0.9.0 user configuration file. Don't replace when updating library.
|
rlm@0
|
2
|
rlm@0
|
3 // snes_spc 0.9.0
|
rlm@0
|
4 #ifndef BLARGG_CONFIG_H
|
rlm@0
|
5 #define BLARGG_CONFIG_H
|
rlm@0
|
6
|
rlm@0
|
7 // Uncomment to disable debugging checks
|
rlm@0
|
8 //#define NDEBUG 1
|
rlm@0
|
9
|
rlm@0
|
10 // Uncomment to enable platform-specific (and possibly non-portable) optimizations
|
rlm@0
|
11 //#define BLARGG_NONPORTABLE 1
|
rlm@0
|
12
|
rlm@0
|
13 // Uncomment if automatic byte-order determination doesn't work
|
rlm@0
|
14 //#define BLARGG_BIG_ENDIAN 1
|
rlm@0
|
15
|
rlm@0
|
16 // Uncomment if you get errors in the bool section of blargg_common.h
|
rlm@0
|
17 //#define BLARGG_COMPILER_HAS_BOOL 1
|
rlm@0
|
18
|
rlm@0
|
19 // Use standard config.h if present
|
rlm@0
|
20 #ifdef HAVE_CONFIG_H
|
rlm@0
|
21 #include "config.h"
|
rlm@0
|
22 #endif
|
rlm@0
|
23
|
rlm@0
|
24 #endif
|