Fixed compile problem in SDL_stretch.c with gcc 3.3

This commit is contained in:
Sam Lantinga 2003-05-29 04:25:29 +00:00
parent ee613b4614
commit 799a11941d

View File

@ -261,9 +261,8 @@ int SDL_SoftStretch(SDL_Surface *src, SDL_Rect *srcrect,
break;
default:
#ifdef __GNUC__
__asm__ __volatile__ ("
call _copy_row
"
__asm__ __volatile__ (
"call _copy_row"
: "=&D" (u1), "=&S" (u2)
: "0" (dstp), "1" (srcp)
: "memory" );