Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Forgot a check for Coldfire CPU
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
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; |
|
|