diff src/video/SDL_stretch.c @ 288:2f5a6062db86

Updated for Watcom C++ and LCC compilers
author Sam Lantinga <slouken@libsdl.org>
date Thu, 28 Feb 2002 00:28:26 +0000
parents 051b991765ba
children f6ffac90895c
line wrap: on
line diff
--- a/src/video/SDL_stretch.c	Wed Feb 27 16:15:34 2002 +0000
+++ b/src/video/SDL_stretch.c	Thu Feb 28 00:28:26 2002 +0000
@@ -39,8 +39,9 @@
    into the general blitting mechanism.
 */
 
-#if (defined(WIN32) && !defined(__FREEBCC__) && !defined(_M_ALPHA) && !defined(_WIN32_WCE)) || \
-    defined(i386) && defined(__GNUC__) && defined(USE_ASMBLIT) 
+#if (defined(WIN32) && !defined(_M_ALPHA) && !defined(_WIN32_WCE) && \
+     !defined(__WATCOMC__) && !defined(__LCC__) && !defined(__FREEBCC__)) || \
+    (defined(i386) && defined(__GNUC__) && defined(USE_ASMBLIT))
 #define USE_ASM_STRETCH
 #endif