GetPathTo -> GetPath

This commit is contained in:
Chris Danford
2005-02-06 03:32:53 +00:00
parent 7e68ac03b4
commit 4223e09cc8
91 changed files with 422 additions and 447 deletions
+3 -3
View File
@@ -20,7 +20,7 @@ ScreenBookkeeping::ScreenBookkeeping( CString sClassName ) : ScreenWithMenuEleme
{
LOG->Trace( "ScreenBookkeeping::ScreenBookkeeping()" );
m_textTitle.LoadFromFont( THEME->GetPathToF("Common title") );
m_textTitle.LoadFromFont( THEME->GetPathF("Common","title") );
m_textTitle.SetText( "header" );
m_textTitle.SetXY( SCREEN_CENTER_X, 60 );
m_textTitle.SetDiffuse( RageColor(1,1,1,1) );
@@ -31,7 +31,7 @@ ScreenBookkeeping::ScreenBookkeeping( CString sClassName ) : ScreenWithMenuEleme
{
float fX = SCALE( i, 0.f, NUM_BOOKKEEPING_COLS-1, SCREEN_LEFT+50, SCREEN_RIGHT-160 );
float fY = SCREEN_CENTER_Y+16;
m_textCols[i].LoadFromFont( THEME->GetPathToF("Common normal") );
m_textCols[i].LoadFromFont( THEME->GetPathF("Common","normal") );
m_textCols[i].SetText( ssprintf("%d",i) );
m_textCols[i].SetXY( fX, fY );
m_textCols[i].SetDiffuse( RageColor(1,1,1,1) );
@@ -41,7 +41,7 @@ ScreenBookkeeping::ScreenBookkeeping( CString sClassName ) : ScreenWithMenuEleme
ChangeView( (View)0 );
SOUND->PlayMusic( THEME->GetPathToS("ScreenBookkeeping music") );
SOUND->PlayMusic( THEME->GetPathS("ScreenBookkeeping","music") );
}
ScreenBookkeeping::~ScreenBookkeeping()