Mercurial > sdl-ios-xcode
changeset 4382:6599c89de50c SDL-1.2
Forgot a check for Coldfire CPU
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Mon, 09 Nov 2009 18:02:32 +0000 |
parents | 5425a6fbacf8 |
children | daf9e6037596 |
files | src/audio/SDL_mixer.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audio/SDL_mixer.c Sat Nov 07 20:56:09 2009 +0000 +++ b/src/audio/SDL_mixer.c Mon Nov 09 18:02:32 2009 +0000 @@ -226,7 +226,7 @@ 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;