fix crashing on arch

This commit is contained in:
UnknownShadow200 2018-12-17 09:50:08 +11:00
parent c148df9959
commit 6c577dee6d

View File

@ -16,7 +16,6 @@ BitmapCol Drawer2D_Cols[DRAWER2D_MAX_COLS];
static char fontNameBuffer[STRING_SIZE]; static char fontNameBuffer[STRING_SIZE];
String Drawer2D_FontName = String_FromArray(fontNameBuffer); String Drawer2D_FontName = String_FromArray(fontNameBuffer);
int Drawer2D_FontSize; int Drawer2D_FontSize;
FontDesc Drawer2D_DefaultFont;
void DrawTextArgs_Make(struct DrawTextArgs* args, STRING_REF const String* text, const FontDesc* font, bool useShadow) { void DrawTextArgs_Make(struct DrawTextArgs* args, STRING_REF const String* text, const FontDesc* font, bool useShadow) {
args->Text = *text; args->Text = *text;
@ -704,7 +703,7 @@ static void Drawer2D_CheckFont(void) {
path = Font_Lookup(&default_fonts[i], FONT_STYLE_NORMAL); path = Font_Lookup(&default_fonts[i], FONT_STYLE_NORMAL);
if (!path.length) continue; if (!path.length) continue;
String_Copy(&Drawer2D_DefaultFont, &path); String_Copy(&Drawer2D_FontName, &default_fonts[i]);
return; return;
} }
ErrorHandler_Fail("Unable to init default font"); ErrorHandler_Fail("Unable to init default font");