mirror of
https://github.com/libretro/ppsspp.git
synced 2025-03-03 14:09:45 +00:00
Argh, this really shouldn't be needed but is.
This commit is contained in:
parent
b3ea250122
commit
1533b588e3
@ -54,6 +54,12 @@ typedef signed long long s64;
|
||||
|
||||
#endif // _WIN32
|
||||
|
||||
|
||||
#ifdef ANDROID
|
||||
#undef BIG_ENDIAN
|
||||
#undef __BIG_ENDIAN__
|
||||
#endif
|
||||
|
||||
#if !BIG_ENDIAN && !__BIG_ENDIAN__
|
||||
typedef u32 u32_le;
|
||||
typedef u16 u16_le;
|
||||
|
@ -108,6 +108,12 @@ struct Glyph {
|
||||
u32 ptr;
|
||||
};
|
||||
|
||||
|
||||
#ifdef ANDROID
|
||||
#undef BIG_ENDIAN
|
||||
#undef __BIG_ENDIAN__
|
||||
#endif
|
||||
|
||||
#if !BIG_ENDIAN && !__BIG_ENDIAN__
|
||||
typedef FontPixelFormat FontPixelFormat_le;
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user