Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
The fix is going back in. :)
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
include/SDL_endian.h
|
@@ -68,7 +68,7 @@ static __inline__ Uint16 SDL_Swap16(Uint16 x) |
|
|
#elif defined(__GNUC__) && defined(__x86_64__) |
|
|
static __inline__ Uint16 SDL_Swap16(Uint16 x) |
|
|
{ |
|
|
__asm__("xchgb %b0,%h0" : "=q" (x) : "0" (x)); |
|
|
__asm__("xchgb %b0,%h0" : "=Q" (x) : "0" (x)); |
|
|
return x; |
|
|
} |
|
|
#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__)) |
|
|