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

View file

@ -29,9 +29,10 @@ Font_LoadFont(string filename)
return -1; return -1;
} }
string font; string font = "gfx/conchars";
string size; string size = "8";
string shortname; string shortname "";
while ((line = fgets(fs_font))) { while ((line = fgets(fs_font))) {
int c = tokenize_console(line); int c = tokenize_console(line);