Skip to content

Commit

Permalink
Forgot a check for Coldfire CPU
Browse files Browse the repository at this point in the history
  • Loading branch information
pmandin committed Nov 9, 2009
1 parent 8490848 commit 85e141b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/SDL_mixer.c
Expand Up @@ -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;
Expand Down

0 comments on commit 85e141b

Please sign in to comment.