Fixed bug 3808 - fix a typo in SDL_stretch.c

Ozkan Sezer

The following patch fixes a minor _MSC_VER typo in SDL_stretch.c,
and also does a tiny tidy-up for assembly opcodes cpp checks.
This commit is contained in:
Sam Lantinga 2017-09-09 08:20:56 -07:00
parent 24a7495691
commit 9a73909bbd
1 changed files with 3 additions and 3 deletions

View File

@ -33,8 +33,8 @@
into the general blitting mechanism. into the general blitting mechanism.
*/ */
#if ((defined(_MFC_VER) && defined(_M_IX86)) || \ #if ((defined(_MSC_VER) && defined(_M_IX86)) || \
defined(__WATCOMC__) || \ (defined(__WATCOMC__) && defined(__386__)) || \
(defined(__GNUC__) && defined(__i386__))) && SDL_ASSEMBLY_ROUTINES (defined(__GNUC__) && defined(__i386__))) && SDL_ASSEMBLY_ROUTINES
/* There's a bug with gcc 4.4.1 and -O2 where srcp doesn't get the correct /* There's a bug with gcc 4.4.1 and -O2 where srcp doesn't get the correct
* value after the first scanline. FIXME? */ * value after the first scanline. FIXME? */
@ -53,7 +53,7 @@
#define PAGE_ALIGNED #define PAGE_ALIGNED
#endif #endif
#if defined(_M_IX86) || defined(i386) #if defined(_M_IX86) || defined(__i386__) || defined(__386__)
#define PREFIX16 0x66 #define PREFIX16 0x66
#define STORE_BYTE 0xAA #define STORE_BYTE 0xAA
#define STORE_WORD 0xAB #define STORE_WORD 0xAB