Corrected missing semicolon

This commit is contained in:
raysan5 2020-03-27 18:31:16 +01:00
parent c7e9951795
commit b5842434c2

View file

@ -1759,7 +1759,7 @@ static Font LoadBMFont(const char *fileName)
{ {
UnloadFont(font); UnloadFont(font);
font = GetFontDefault(); font = GetFontDefault();
TRACELOG(LOG_WARNING, "FONT: [%s] Failed to load texture, reverted to default font", fileName) TRACELOG(LOG_WARNING, "FONT: [%s] Failed to load texture, reverted to default font", fileName);
} }
else TRACELOG(LOG_INFO, "FONT: [%s] Font loaded successfully", fileName); else TRACELOG(LOG_INFO, "FONT: [%s] Font loaded successfully", fileName);