Client: Font_LoadFont() will now have some credible defaults as a fallback.

This commit is contained in:
Marco Cawthorne 2021-06-27 09:56:25 +02:00
parent 88e5084f38
commit 4d042ea062
1 changed files with 4 additions and 3 deletions

View File

@ -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);