This commit is contained in:
Jonas Kulla 2014-01-04 13:00:04 +01:00
parent c9423164d4
commit 78f9272e3d
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ Color FontPrivate::defaultColorTmp(255, 255, 255, 255);
bool Font::doesExist(const char *name)
{
std::string path = std::string("fonts/") + std::string(name);
std::string path = std::string("Fonts/") + std::string(name);
return shState->fileSystem().exists(path.c_str(), FileSystem::Font);
}