We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ac1046 commit dc0158eCopy full SHA for dc0158e
docs/notes/bugfix-13000.md
@@ -0,0 +1 @@
1
+# Image colours not showing correctly on Android device
libcore/include/core.h
@@ -122,6 +122,17 @@ typedef __builtin_va_list va_list;
122
typedef uint32_t size_t;
123
#endif
124
125
+// AL-2014-07-30: [[ Bug 13000 ]] Ensure ___LITTLE_ENDIAN__ is defined appropriately
126
+#ifdef __ppc__
127
+#undef __LITTLE_ENDIAN__
128
+#undef __BIG_ENDIAN__
129
+#define __BIG_ENDIAN__ 1
130
+#else
131
132
133
+#define __LITTLE_ENDIAN__ 1
134
+#endif
135
+
136
////////////////////////////////////////////////////////////////////////////////
137
138
#ifdef _DEBUG
0 commit comments