Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed compile problem in SDL_stretch.c with gcc 3.3
  • Loading branch information
slouken committed May 29, 2003
1 parent 0c17fd2 commit 14d1657
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/video/SDL_stretch.c
Expand Up @@ -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" );
Expand Down

0 comments on commit 14d1657

Please sign in to comment.