Client: Font_LoadFont() will now have some credible defaults as a fallback.
This commit is contained in:
parent
88e5084f38
commit
4d042ea062
1 changed files with 4 additions and 3 deletions
|
@ -29,9 +29,10 @@ Font_LoadFont(string filename)
|
|||
return -1;
|
||||
}
|
||||
|
||||
string font;
|
||||
string size;
|
||||
string shortname;
|
||||
string font = "gfx/conchars";
|
||||
string size = "8";
|
||||
string shortname "";
|
||||
|
||||
while ((line = fgets(fs_font))) {
|
||||
int c = tokenize_console(line);
|
||||
|
||||
|
|
Loading…
Reference in a new issue