make calls to THEME->GetPathTo() more concise

This commit is contained in:
Chris Danford
2003-04-12 17:39:27 +00:00
parent 625b1beb04
commit 448bdc7b6e
96 changed files with 508 additions and 513 deletions
+3 -3
View File
@@ -65,9 +65,9 @@ void Inventory::Load( PlayerNumber pn )
{
for( int p=0; p<NUM_PLAYERS; p++ )
{
m_soundAcquireItem.Load( THEME->GetPathTo("Sounds","Inventory aquire item") );
m_soundUseItem.Load( THEME->GetPathTo("Sounds","Inventory use item") );
m_soundItemEnding.Load( THEME->GetPathTo("Sounds","Inventory item ending") );
m_soundAcquireItem.Load( THEME->GetPathToS("Inventory aquire item") );
m_soundUseItem.Load( THEME->GetPathToS("Inventory use item") );
m_soundItemEnding.Load( THEME->GetPathToS("Inventory item ending") );
}
}
}