no message

This commit is contained in:
Chris Danford
2002-06-27 19:14:23 +00:00
parent cf9b808ea3
commit 582ce28058
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ ScreenSelectStyle::ScreenSelectStyle()
// Load dummy Sprites // Load dummy Sprites
for( int i=0; i<m_aPossibleStyles.GetSize(); i++ ) for( i=0; i<m_aPossibleStyles.GetSize(); i++ )
{ {
ThemeElement te; ThemeElement te;
+1 -1
View File
@@ -373,7 +373,7 @@ bool Song::LoadFromBMSDir( CString sDir )
iIndex = value_data.ReverseFind('('); iIndex = value_data.ReverseFind('(');
if( iIndex != -1 ) if( iIndex != -1 )
{ {
value_data.Delete( iIndex, 10000 ); value_data = value_data.Left( iIndex );
GetMainAndSubTitlesFromFullTitle( value_data, m_sMainTitle, m_sSubTitle ); GetMainAndSubTitlesFromFullTitle( value_data, m_sMainTitle, m_sSubTitle );
} }
else else
+1 -1
View File
@@ -94,7 +94,7 @@ void SongManager::InitSongArrayFromDisk()
arraySongs.Copy( m_pSongs ); arraySongs.Copy( m_pSongs );
SortSongPointerArrayByGroup( arraySongs ); SortSongPointerArrayByGroup( arraySongs );
for( int i=0; i<m_pSongs.GetSize(); i++ ) for( i=0; i<m_pSongs.GetSize(); i++ )
{ {
Song* pSong = m_pSongs[i]; Song* pSong = m_pSongs[i];
const CString sGroupName = m_pSongs[i]->GetGroupName(); const CString sGroupName = m_pSongs[i]->GetGroupName();