Mercurial > sdl-ios-xcode
diff src/audio/SDL_mixer_MMX_VC.c @ 4322:a8e5b518e194 SDL-1.2
Forcibly disabled MMX mixers.
Hopefully fixes Bugzilla #649.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 12 Oct 2009 08:58:12 +0000 |
parents | a1b03ba2fcd0 |
children |
line wrap: on
line diff
--- a/src/audio/SDL_mixer_MMX_VC.c Mon Oct 12 08:18:36 2009 +0000 +++ b/src/audio/SDL_mixer_MMX_VC.c Mon Oct 12 08:58:12 2009 +0000 @@ -23,6 +23,7 @@ #include "SDL_mixer_MMX_VC.h" +#if defined(SDL_BUGGY_MMX_MIXERS) /* buggy, so we're disabling them. --ryan. */ #if ((defined(_MSC_VER) && defined(_M_IX86)) || defined(__WATCOMC__)) && defined(SDL_ASSEMBLY_ROUTINES) // MMX assembler version of SDL_MixAudio for signed little endian 16 bit samples and signed 8 bit samples // Copyright 2002 Stephane Marchesin (stephane.marchesin@wanadoo.fr) @@ -179,3 +180,4 @@ } #endif /* SDL_ASSEMBLY_ROUTINES */ +#endif /* SDL_BUGGY_MMX_MIXERS */