use SongID in DisabledSongs logic

This commit is contained in:
Chris Danford
2008-02-22 01:19:47 +00:00
parent 78bf87c021
commit 9c5a4658f2
3 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ ThemeMetric<RString> DEFAULT_SONG ("GameState","DefaultSong");
Song* GameState::GetDefaultSong() const
{
SongID sid;
sid.LoadFromDir( DEFAULT_SONG );
sid.FromString( DEFAULT_SONG );
return sid.ToSong();
}