Skip to content

Commit

Permalink
FontEngine: Don't use file extension to check font file compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
kwolekr committed Dec 29, 2014
1 parent cc3ab5e commit 9eb4922
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/fontengine.cpp
Expand Up @@ -337,12 +337,6 @@ void FontEngine::initFont(unsigned int basesize, FontMode mode)

std::string font_path = g_settings->get(font_config_prefix + "font_path");

if (font_path.substr(font_path.length() -4) != ".ttf") {
errorstream << "FontEngine: \"" << font_path
<< "\" doesn't seem to be a ttf File." << std::endl;
return;
}

irr::gui::IGUIFont* font = gui::CGUITTFont::createTTFont(m_env,
font_path.c_str(), size, true, true, font_shadow,
font_shadow_alpha);
Expand Down Expand Up @@ -378,7 +372,7 @@ void FontEngine::initSimpleFont(unsigned int basesize, FontMode mode)
return;
}

if ((ending == ".xml") || ( ending == ".png")) {
if ((ending == ".xml") || (ending == ".png")) {
basename = font_path.substr(0,font_path.length()-4);
}

Expand Down

0 comments on commit 9eb4922

Please sign in to comment.