Updated AnnoucerManager::GetPathTo to act like ThemeManager. More theme and Ez2 cleanup.
This commit is contained in:
@@ -840,12 +840,16 @@ bool Notes::LoadFromKSFFile( const CString &sPath )
|
||||
for( int r=0; r<asRows.GetSize(); r++ )
|
||||
{
|
||||
CString& sRowString = asRows[r];
|
||||
ASSERT( sRowString.GetLength() == 13 ); // why 13 notes per row. Beats me!
|
||||
|
||||
if( sRowString == "" )
|
||||
continue; // skip
|
||||
|
||||
/* All 2s indicates the end of the song. */
|
||||
if( sRowString == "2222222222222" )
|
||||
break;
|
||||
|
||||
ASSERT( sRowString.GetLength() == 13 ); // why 13 notes per row. Beats me!
|
||||
|
||||
// the length of a note in a row depends on TICKCOUNT
|
||||
float fBeatThisRow = r/(float)iTickCount;
|
||||
int row = BeatToNoteRow(fBeatThisRow);
|
||||
|
||||
Reference in New Issue
Block a user