(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 49e71c3bee
commit aa9bf82121
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