[DEBUG] correct basic font folder

This commit is contained in:
Edouard DUPIN 2019-04-01 22:03:49 +02:00
parent 5c2ba27cc5
commit 1cfa68a23f
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ void ewol::resource::DistanceFieldFont::init(const etk::String& _fontName) {
#if defined(__TARGET_OS__Android)
folderList.pushBack(etk::Path("/system/fonts"));
#elif defined(__TARGET_OS__Linux)
folderList.pushBack(etk::Path("/usr/share/fonts/truetype"));
folderList.pushBack(etk::Path("/usr/share/fonts"));
#endif
}
etk::Uri applicationBaseFont = ewol::getContext().getFontDefault().getFolder();

View File

@ -116,7 +116,7 @@ void ewol::resource::TexturedFont::init(const etk::String& _fontName) {
#if defined(__TARGET_OS__Android)
folderList.pushBack(etk::Path("/system/fonts"));
#elif defined(__TARGET_OS__Linux)
folderList.pushBack(etk::Path("/usr/share/fonts/truetype"));
folderList.pushBack(etk::Path("/usr/share/fonts"));
#endif
}
etk::Uri applicationBaseFont = ewol::getContext().getFontDefault().getFolder();