(svn r23274) -Add: internal support for a monospaced sprite font

This commit is contained in:
rubidium
2011-11-20 11:56:51 +00:00
parent 0a4a75b0af
commit dfefcab47d
5 changed files with 45 additions and 3 deletions

View File

@@ -29,12 +29,15 @@ struct FreeTypeSettings {
char small_font[MAX_PATH];
char medium_font[MAX_PATH];
char large_font[MAX_PATH];
char mono_font[MAX_PATH];
uint small_size;
uint medium_size;
uint large_size;
uint mono_size;
bool small_aa;
bool medium_aa;
bool large_aa;
bool mono_aa;
};
extern FreeTypeSettings _freetype;