diff --git a/ChangeLog b/ChangeLog index 94a0a1a34..ad756c11d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-05-31 Werner Lemberg + + [sfnt] Get colors from `CPAL' table in right order (#54015). + + * src/sfnt/ttcolr.c (tt_face_find_color): Fix it. + 2018-05-30 Werner Lemberg ftcolor.h: Improve API design, fix typos (#54011, #54014). diff --git a/src/sfnt/ttcolr.c b/src/sfnt/ttcolr.c index 395c8c9bf..0fb332431 100644 --- a/src/sfnt/ttcolr.c +++ b/src/sfnt/ttcolr.c @@ -384,9 +384,9 @@ p = cpal->colors + color_offset + COLOR_SIZE * color_index; - *red = FT_NEXT_BYTE( p ); - *green = FT_NEXT_BYTE( p ); *blue = FT_NEXT_BYTE( p ); + *green = FT_NEXT_BYTE( p ); + *red = FT_NEXT_BYTE( p ); *alpha = FT_NEXT_BYTE( p ); return 1;