(svn r27858) -Change [FS#6560]: Add missing game script event for ships arriving at a station. (juanjo)

This commit is contained in:
peter1138
2017-04-23 09:19:32 +00:00
parent 3c3693583d
commit c973f65acb
2 changed files with 3 additions and 1 deletions

View File

@@ -529,7 +529,7 @@ const Sprite *FreeTypeFontCache::GetGlyph(GlyphID key)
return glyph->sprite;
}
}
FT_Load_Glyph(this->face, key, FT_LOAD_DEFAULT);
FT_Load_Glyph(this->face, key, FT_LOAD_NO_HINTING);
FT_Render_Glyph(this->face->glyph, aa ? FT_RENDER_MODE_NORMAL : FT_RENDER_MODE_MONO);
/* Despite requesting a normal glyph, FreeType may have returned a bitmap */