From cee035c9cb010b82c74a468abbc7a9031ab100a2 Mon Sep 17 00:00:00 2001 From: YJSoft Date: Wed, 2 Mar 2016 00:32:28 +0900 Subject: [PATCH 1/2] fix windows xp font loading problem no need to cat because Fonts path must start with `C:\` --- src/platform/windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From d3bbab6ce456c0abbd2c4c798328a9671ccf1758 Mon Sep 17 00:00:00 2001 From: YJSoft Date: Wed, 2 Mar 2016 00:36:37 +0900 Subject: [PATCH 2/2] add myself to contributors --- contributors.md | 1 + 1 file changed, 1 insertion(+) 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