mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
core, fix typo
This commit is contained in:
parent
5b8ff611e0
commit
1a5a036eb9
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@
|
||||||
// some well known non-standard macros for detection.
|
// some well known non-standard macros for detection.
|
||||||
#if defined __BYTE_ORDER__
|
#if defined __BYTE_ORDER__
|
||||||
#define CPU_IS_LE __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
#define CPU_IS_LE __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
||||||
#elif defined _BYTE_ORDER
|
#elif defined __BYTE_ORDER
|
||||||
#define CPU_IS_LE __BYTE_ORDER == __LITTLE_ENDIAN
|
#define CPU_IS_LE __BYTE_ORDER == __LITTLE_ENDIAN
|
||||||
#elif defined __BIG_ENDIAN__ || defined _M_PPC // Windows on PPC was big endian
|
#elif defined __BIG_ENDIAN__ || defined _M_PPC // Windows on PPC was big endian
|
||||||
#define CPU_IS_LE 0
|
#define CPU_IS_LE 0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue