diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 36df03741c..62754052dd 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -900,14 +900,14 @@ void Song::GetSteps( vector& arrayAddTo, StepsType st, Difficulty dc, in if( !bIncludeAutoGen && pSteps->IsAutogen() ) continue; + arrayAddTo.push_back( pSteps ); + if( Max != -1 ) { --Max; if( !Max ) break; } - - arrayAddTo.push_back( pSteps ); } }