1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 17:42:29 +01:00

fix windows xp font loading problem

no need to cat because Fonts path must start with `C:\`
This commit is contained in:
YJSoft
2016-03-02 00:32:28 +09:00
parent ce779cb4c1
commit cee035c9cb

View File

@@ -957,7 +957,7 @@ bool platform_get_font_path(TTFFontDescriptor *font, utf8 *buffer)
}
#else
log_warning("Compatibility hack: falling back to C:\\Windows\\Fonts");
strcat(buffer, "C:\\Windows\\Fonts\\");
strcpy(buffer, "C:\\Windows\\Fonts\\");
strcat(buffer, font->filename);
return true;
#endif