From 7c31d7ca0a88f4b7564ec656e7cbe8ef2d496853 Mon Sep 17 00:00:00 2001
From: Aloshi <allofquist@yahoo.com>
Date: Sun, 31 Aug 2014 09:57:38 -0500
Subject: [PATCH] Hopefully fixed compiling on Linux.

---
 es-core/src/resources/Font.cpp | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

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<std::string> 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<std::string> getFallbackFontPaths()
 	}
 
 	fontPaths.shrink_to_fit();
-	return fonts;
+	return fontPaths;
 
 #endif
 }