From f21d3ca71bc5f7c3138ac13c9d676ccec0b12e22 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 24 Jul 2004 23:00:27 +0000 Subject: [PATCH] fix odd font file searching --- stepmania/src/Font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Font.cpp b/stepmania/src/Font.cpp index 87891ef7a5..c6bc738235 100644 --- a/stepmania/src/Font.cpp +++ b/stepmania/src/Font.cpp @@ -792,7 +792,7 @@ void Font::Load(const CString &sFontOrTextureFilePath, CString sChars) split(imports, ",", ImportList, true); for(unsigned i = 0; i < ImportList.size(); ++i) { - CString path = THEME->GetPathToF( ImportList[i], true ); + CString path = THEME->GetPathF( "", ImportList[i], true ); if( path == "" ) { LOG->Warn("Font \"%s\" imports a font \"%s\" that doesn't exist", sFontOrTextureFilePath.c_str(), ImportList[i].c_str());