GetPathTo -> GetPath
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user