mirror of
https://github.com/yawut/SDL.git
synced 2026-04-25 15:58:04 -05:00
Wrong size of parameters for SDL_Swap32 m68k assembly routine
This commit is contained in:
parent
5e19f578b5
commit
ae203664c1
|
|
@ -114,9 +114,9 @@ static __inline__ Uint32 SDL_Swap32(Uint32 x)
|
|||
return result;
|
||||
}
|
||||
#elif defined(__GNUC__) && defined(__M68000__)
|
||||
static __inline__ Uint16 SDL_Swap32(Uint16 x)
|
||||
static __inline__ Uint32 SDL_Swap32(Uint32 x)
|
||||
{
|
||||
__asm__("rorw #8,%0;\t\nswap %0;\t\nror #8,%0" : "=d" (x) : "0" (x) : "cc");
|
||||
__asm__("rorw #8,%0\n\tswap %0\n\tror #8,%0" : "=d" (x) : "0" (x) : "cc");
|
||||
return x;
|
||||
}
|
||||
#else
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user