diff --git a/src/Font.cpp b/src/Font.cpp index c3e81622..183acc6b 100644 --- a/src/Font.cpp +++ b/src/Font.cpp @@ -174,7 +174,7 @@ void DrawText(FontObject *font_object, SDL_Surface *surface, int x, int y, unsig { if (font_object != NULL) { - const unsigned char colours[3] = {(unsigned char)(colour >> 16), (unsigned char)(colour >> 8), (unsigned char)colour}; + const unsigned char colours[3] = {(unsigned char)colour, (unsigned char)(colour >> 8), (unsigned char)(colour >> 16)}; FT_Face face = font_object->face;