mirror of
https://github.com/libretro/RetroArch
synced 2024-12-29 12:31:05 +00:00
<________________________<
This commit is contained in:
parent
0416a2ae61
commit
9c67452f10
@ -46,7 +46,7 @@ static void *xenon360_init(const char *device, unsigned rate, unsigned latency)
|
||||
|
||||
static inline uint32_t bswap_32(uint32_t val)
|
||||
{
|
||||
return (val >> 24) || (val << 24) || ((val >> 8) & 0xff00) || ((val << 8) & 0xff0000);
|
||||
return (val >> 24) | (val << 24) | ((val >> 8) & 0xff00) | ((val << 8) & 0xff0000);
|
||||
}
|
||||
|
||||
static ssize_t xenon360_write(void *data, const void *buf, size_t size)
|
||||
|
Loading…
Reference in New Issue
Block a user