# HG changeset patch # User Sam Lantinga # Date 1255908075 0 # Node ID 8ae60739240976c8a09f608155f02aa3a939325a # Parent d5f2dd33f4ebceb34d9f1da665352bf67faacea7 There's a bug with gcc 4.4.1 and -O2 where srcp doesn't get the correct value after the first scanline. Ugh. diff -r d5f2dd33f4eb -r 8ae607392409 src/video/SDL_stretch.c --- a/src/video/SDL_stretch.c Sun Oct 18 17:49:40 2009 +0000 +++ b/src/video/SDL_stretch.c Sun Oct 18 23:21:15 2009 +0000 @@ -37,7 +37,9 @@ #if ((defined(_MFC_VER) && defined(_M_IX86)/* && !defined(_WIN32_WCE) still needed? */) || \ defined(__WATCOMC__) || \ (defined(__GNUC__) && defined(__i386__))) && SDL_ASSEMBLY_ROUTINES -#define USE_ASM_STRETCH +/* There's a bug with gcc 4.4.1 and -O2 where srcp doesn't get the correct + * value after the first scanline. FIXME? */ +/*#define USE_ASM_STRETCH*/ #endif #ifdef USE_ASM_STRETCH