Commit 29f7b231 authored by Sam Lantinga's avatar Sam Lantinga

Fixed compile problem in SDL_stretch.c with gcc 3.3

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40628
parent f1d97fe2
......@@ -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" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment