Commit 68e2ab65 authored by Ryan C. Gordon's avatar Ryan C. Gordon

For sanity's sake, removed the '&' when passing copy_row array to asm.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401237
parent 50b7b55c
...@@ -285,11 +285,11 @@ int SDL_SoftStretch(SDL_Surface *src, SDL_Rect *srcrect, ...@@ -285,11 +285,11 @@ int SDL_SoftStretch(SDL_Surface *src, SDL_Rect *srcrect,
__asm__ __volatile__ ( __asm__ __volatile__ (
"call *%4" "call *%4"
: "=&D" (u1), "=&S" (u2) : "=&D" (u1), "=&S" (u2)
: "0" (dstp), "1" (srcp), "r" (&copy_row) : "0" (dstp), "1" (srcp), "r" (copy_row)
: "memory" ); : "memory" );
#else #else
#ifdef WIN32 #ifdef WIN32
{ void *code = &copy_row; { void *code = copy_row;
__asm { __asm {
push edi push edi
push esi push esi
......
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