diff --git a/contributors.md b/contributors.md index 95aea8434c..57033c669d 100644 --- a/contributors.md +++ b/contributors.md @@ -57,6 +57,7 @@ Includes all git commit authors. Aliases are GitHub user names. * Michael Pham (nightroan) * Hielke Morsink (Broxzier) * Lucas Riutzel (jackinloadup) +* Youngjae Yu (YJSoft) ## Toolchain * (Balletie) - OSX diff --git a/src/platform/windows.c b/src/platform/windows.c index c803c31d08..5bc081df8d 100644 --- a/src/platform/windows.c +++ b/src/platform/windows.c @@ -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