font reloading for real this time

This commit is contained in:
AJ Kelly
2011-02-17 15:00:58 -06:00
parent 69491c7ccb
commit 8283a5bdda
2 changed files with 5 additions and 6 deletions
+4 -3
View File
@@ -726,9 +726,10 @@ void Font::Load( const RString &sIniPath, RString sChars )
continue;
}
Font *subfont=FONT->LoadFont(path,"");
MergeFont(*subfont);
FONT->UnloadFont(subfont);
Font subfont;
subfont.Load(path,"");
MergeFont(subfont);
//FONT->UnloadFont(subfont);
}
}