all this does is remove a level of indentation; diff isn't very smart

about that.
This commit is contained in:
Glenn Maynard
2002-10-11 18:23:05 +00:00
parent cc0735ecd7
commit b90af9fdf4
+4 -3
View File
@@ -751,8 +751,10 @@ void Song::AddAutoGenNotes()
{ {
for( NotesType ntMissing=(NotesType)0; ntMissing<NUM_NOTES_TYPES; ntMissing=(NotesType)(ntMissing+1) ) for( NotesType ntMissing=(NotesType)0; ntMissing<NUM_NOTES_TYPES; ntMissing=(NotesType)(ntMissing+1) )
{ {
if( !SongHasNotesType(ntMissing) ) // missing Notes of this type if( SongHasNotesType(ntMissing) )
{ continue;
// missing Notes of this type
int iNumTracksOfMissing = GAMEMAN->NotesTypeToNumTracks(ntMissing); int iNumTracksOfMissing = GAMEMAN->NotesTypeToNumTracks(ntMissing);
// look for closest match // look for closest match
@@ -795,7 +797,6 @@ void Song::AddAutoGenNotes()
} }
} }
} }
}
Grade Song::GetGradeForDifficulty( const StyleDef *st, int p, Difficulty dc ) const Grade Song::GetGradeForDifficulty( const StyleDef *st, int p, Difficulty dc ) const
{ {