Only autogen Medium difficulty steps for Routine modes.

This commit is contained in:
AJ Kelly
2010-06-26 18:10:33 -05:00
parent 1c39a7db20
commit f099672b8d
+4 -2
View File
@@ -979,8 +979,10 @@ void Song::AutoGen( StepsType ntTo, StepsType ntFrom )
// going by Pump Pro. -aj
if(ntTo == StepsType_pump_halfdouble && pNewNotes->GetDifficulty() != Difficulty_Medium)
continue;
// todo: don't generate steps for Couples and Routine if
// AutoSetStyle is on? -aj
// Only generate Medium difficulty steps for Routine modes. -aj
if( (ntTo == StepsType_dance_routine || ntTo == StepsType_pump_routine )
&& pNewNotes->GetDifficulty() != Difficulty_Medium)
continue;
this->AddSteps( pNewNotes );
}
}