diff --git a/es-core/src/resources/Font.cpp b/es-core/src/resources/Font.cpp index 91bda2be9..f9f3fd7fe 100644 --- a/es-core/src/resources/Font.cpp +++ b/es-core/src/resources/Font.cpp @@ -382,6 +382,10 @@ std::vector getFallbackFontPaths() // TODO const char* paths[] = { + // Japanese + "/usr/share/fonts/truetype/fonts-japanese-gothic.ttf", + + // Latin "/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf", "/usr/share/fonts/TTF/DejaVuSerif.ttf", "/usr/share/fonts/dejavu/DejaVuSerif.ttf" @@ -395,7 +399,7 @@ std::vector getFallbackFontPaths() } fontPaths.shrink_to_fit(); - return fonts; + return fontPaths; #endif }