summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fontcache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontcache.cpp b/src/fontcache.cpp
index 8a3f684f6..c5cb84732 100644
--- a/src/fontcache.cpp
+++ b/src/fontcache.cpp
@@ -299,7 +299,7 @@ static int CALLBACK EnumFontCallback(const ENUMLOGFONTEX *logfont, const NEWTEXT
}
const char *english_name = GetEnglishFontName(logfont);
- const char *font_name = WIDE_TO_MB(logfont->elfFullName);
+ const char *font_name = WIDE_TO_MB((const TCHAR*)logfont->elfFullName);
DEBUG(freetype, 1, "Fallback font: %s (%s)", font_name, english_name);
strecpy(info->settings->small_font, font_name, lastof(info->settings->small_font));