(svn r25442) -Codechange: move height and ascender information into the FontCache instances

This commit is contained in:
rubidium
2013-06-23 15:32:09 +00:00
parent eb4388f4f3
commit d724088a1c
4 changed files with 34 additions and 41 deletions

View File

@@ -526,7 +526,7 @@ public:
uint Height(uint width) const
{
return max(FONT_HEIGHT_NORMAL, (byte)14);
return max(FONT_HEIGHT_NORMAL, 14);
}
bool Selectable() const