mirror of
https://github.com/yawut/SDL.git
synced 2026-08-20 07:44:03 -05:00
Fixed compile problem in SDL_stretch.c with gcc 3.3
This commit is contained in:
@@ -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" );
|
||||
|
||||
Reference in New Issue
Block a user