1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

PixelARGB compile fix for PPC targets.

This commit is contained in:
jules 2012-07-21 20:25:50 +01:00
parent 75d72d6323
commit ad1becb00b
3 changed files with 2 additions and 9 deletions

View file

@ -269,7 +269,7 @@ private:
struct Components
{
#if JUCE_BIG_ENDIAN
uint8 a : 8, r : 8, g : 8, b : 8;
uint8 a, r, g, b;
#else
uint8 b, g, r, a;
#endif