diff options
author | fearlessTobi <thm.frey@gmail.com> | 2018-07-07 13:59:18 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2018-07-07 13:59:18 +0200 |
commit | 70a6691e3be2fa7178c1c6cb43ed4435cbabdd0c (patch) | |
tree | d383e9925ec3fe864f75a3feba1896eec41689b3 /src/common/swap.h | |
parent | e19747634413f7eb939fc9cbcdfc01c2cfcf4e51 (diff) |
Port #3579 from Citra
Diffstat (limited to 'src/common/swap.h')
-rw-r--r-- | src/common/swap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/swap.h b/src/common/swap.h index 4a4012d1a..f025f7450 100644 --- a/src/common/swap.h +++ b/src/common/swap.h @@ -69,7 +69,7 @@ inline u32 swap32(u32 _data) { inline u64 swap64(u64 _data) { return _byteswap_uint64(_data); } -#elif _M_ARM +#elif ARCHITECTURE_ARM inline u16 swap16(u16 _data) { u32 data = _data; __asm__("rev16 %0, %1\n" : "=l"(data) : "l"(data)); |