From 85e141ba89e0554fb20f17c11254709ebf356244 Mon Sep 17 00:00:00 2001 From: Patrice Mandin Date: Mon, 9 Nov 2009 18:02:32 +0000 Subject: [PATCH] Forgot a check for Coldfire CPU --- src/audio/SDL_mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/SDL_mixer.c b/src/audio/SDL_mixer.c index 36c17f5ff..7830f52ac 100644 --- a/src/audio/SDL_mixer.c +++ b/src/audio/SDL_mixer.c @@ -226,7 +226,7 @@ void SDL_MixAudio (Uint8 *dst, const Uint8 *src, Uint32 len, int volume) break; case AUDIO_S16MSB: { -#if defined(__GNUC__) && defined(__M68000__) && defined(SDL_ASSEMBLY_ROUTINES) +#if defined(__GNUC__) && defined(__M68000__) && !defined(__mcoldfire__) && defined(SDL_ASSEMBLY_ROUTINES) SDL_MixAudio_m68k_S16MSB((short*)dst,(short*)src,(unsigned long)len,(long)volume); #else Sint16 src1, src2;