From 78f9272e3d9b6625738bb723421a81635e82bf75 Mon Sep 17 00:00:00 2001 From: Jonas Kulla Date: Sat, 4 Jan 2014 13:00:04 +0100 Subject: [PATCH] Typo --- src/font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/font.cpp b/src/font.cpp index 3ef3621..07b26ee 100644 --- a/src/font.cpp +++ b/src/font.cpp @@ -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); }