From 04300bb48c715f949eff4eb7b2dbc289d9eafcb9 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 21 Mar 2011 02:10:10 -0400 Subject: [PATCH] Try to respect hungarian notation better. --- src/Font.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Font.cpp b/src/Font.cpp index 209158c7cf..4534f76d09 100644 --- a/src/Font.cpp +++ b/src/Font.cpp @@ -713,8 +713,8 @@ void Font::Load( const RString &sIniPath, RString sChars ) for(unsigned i = 0; i < ImportList.size(); ++i) { - RString fPath = THEME->GetPathF( "", ImportList[i], true ); - if( fPath == "" ) + RString sPath = THEME->GetPathF( "", ImportList[i], true ); + if( sPath == "" ) { RString s = ssprintf( "Font \"%s\" imports a font \"%s\" that doesn't exist", sIniPath.c_str(), ImportList[i].c_str() ); Dialog::OK( s ); @@ -722,7 +722,7 @@ void Font::Load( const RString &sIniPath, RString sChars ) } Font subfont; - subfont.Load(fPath,""); + subfont.Load(sPath,""); MergeFont(subfont); } }