CHANGE: cleaned up debug messages

This commit is contained in:
Chris Danford
2002-01-20 07:51:09 +00:00
parent d2d2e6ac08
commit 40df826636
10 changed files with 51 additions and 29 deletions
-4
View File
@@ -211,8 +211,6 @@ bool Song::LoadSongInfoFromBMSDir( CString sDir )
// get group name
CStringArray sDirectoryParts;
split( m_sSongDir, "\\", sDirectoryParts, true );
for( int p=0; p<sDirectoryParts.GetSize(); p++ )
RageLog( "sDirectoryParts[p] = '%s'", sDirectoryParts[p] );
m_sGroupName = sDirectoryParts[1];
@@ -369,8 +367,6 @@ bool Song::LoadSongInfoFromDWIFile( CString sPath )
// get group name
CStringArray sDirectoryParts;
split( m_sSongDir, "\\", sDirectoryParts, true );
for( int p=0; p<sDirectoryParts.GetSize(); p++ )
RageLog( "sDirectoryParts[p] = '%s'", sDirectoryParts[p] );
m_sGroupName = sDirectoryParts[1];
}