3DS: Fix menu color

This commit is contained in:
Jeffrey Pfau 2015-08-29 04:44:09 -07:00
parent 41b1eecb8c
commit 1552218788
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ void GUIFontDrawGlyph(const struct GUIFont* font, int x, int y, uint32_t color,
if (glyph > 0x7F) {
glyph = 0;
}
color = (color >> 24) | (color << 8);
struct GUIFontGlyphMetric metric = defaultFontMetrics[glyph];
sf2d_draw_texture_part_blend(font->tex,
x - metric.padding.left,