mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-06 21:12:12 +00:00
a8de4fc2da
everything that was new for XP. - Swapped snes_spc out for the full Game Music Emu library. SVN r1631 (trunk)
31 lines
834 B
C
31 lines
834 B
C
// Library configuration. Modify this file as necessary.
|
|
|
|
#ifndef BLARGG_CONFIG_H
|
|
#define BLARGG_CONFIG_H
|
|
|
|
// Uncomment to use zlib for transparent decompression of gzipped files
|
|
//#define HAVE_ZLIB_H
|
|
|
|
// Uncomment to support only the listed game music types. See gme_type_list.cpp
|
|
// for a list of all types.
|
|
//#define GME_TYPE_LIST gme_nsf_type, gme_gbs_type
|
|
|
|
// Uncomment to enable platform-specific optimizations
|
|
//#define BLARGG_NONPORTABLE 1
|
|
|
|
// Uncomment to use faster, lower quality sound synthesis
|
|
//#define BLIP_BUFFER_FAST 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
|