view src/console/blargg_config.h @ 3187:360e92f3211d

alsa-ng: Apparently 24bit values are padded to 32bit, so we need to tell ALSA that. The FMT_*24_* constants are misleading.
author William Pitcock <nenolod@atheme.org>
date Fri, 19 Jun 2009 08:38:14 -0500
parents 986f098da058
children
line wrap: on
line source

// Custom Audacious configuration

#ifndef BLARGG_CONFIG_H
#define BLARGG_CONFIG_H

// 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 non-exception-throwing operator new
#define BLARGG_DISABLE_NOTHROW

// Have GME use VFS file access
#define GME_FILE_READER Vfs_File_Reader
#define GME_FILE_READER_INCLUDE "Vfs_File.h"

#endif