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
+2 -2
View File
@@ -17,14 +17,14 @@ ScreenTestInput::ScreenTestInput( CString sClassName ) : ScreenWithMenuElements(
LOG->Trace( "ScreenTestInput::ScreenTestInput()" );
m_textInputs.LoadFromFont( THEME->GetPathToF("Common normal") );
m_textInputs.LoadFromFont( THEME->GetPathF("Common","normal") );
m_textInputs.SetText( "" );
m_textInputs.SetXY( SCREEN_CENTER_X, SCREEN_CENTER_Y );
m_textInputs.SetDiffuse( RageColor(1,1,1,1) );
m_textInputs.SetZoom( 0.8f );
this->AddChild( &m_textInputs );
SOUND->PlayMusic( THEME->GetPathToS("ScreenTestInput music") );
SOUND->PlayMusic( THEME->GetPathS("ScreenTestInput","music") );
}