Skip to content

Commit

Permalink
Fixed byte order definition on MacOS X...fixes SDL_mixer timidity dec…
Browse files Browse the repository at this point in the history
…oder.
  • Loading branch information
icculus committed Aug 5, 2003
1 parent b6879d1 commit 0fda304
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions timidity/config.h
Expand Up @@ -127,6 +127,12 @@
/* This is enforced by some computations that must fit in an int */
#define MAX_CONTROL_RATIO 255

#if MACOSX
#undef LITTLE_ENDIAN
#undef BIG_ENDIAN
#define BIG_ENDIAN 1
#endif

/* Byte order, defined in <machine/endian.h> for FreeBSD and DEC OSF/1 */
#ifdef DEC
#include <machine/endian.h>
Expand Down

0 comments on commit 0fda304

Please sign in to comment.