From eae575a246f5ff7b1048f97f00f9663c221c5015 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 6 Mar 2011 18:57:29 -0500 Subject: [PATCH] Experiment: don't restrict halfdouble & routine. I'm sure someone wants to see these in all difficulty levels. Revert this if it becomes too crazy. --- src/Song.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Song.cpp b/src/Song.cpp index cca9057216..706c06a3ff 100644 --- a/src/Song.cpp +++ b/src/Song.cpp @@ -1055,15 +1055,6 @@ void Song::AutoGen( StepsType ntTo, StepsType ntFrom ) { Steps* pNewNotes = new Steps; pNewNotes->AutogenFrom( pOriginalNotes, ntTo ); - // Only generate Medium difficulty steps for Pump-Halfdouble, as - // that seems to be the only difficulty Half-doubles charts use, - // going by Pump Pro. -aj - if(ntTo == StepsType_pump_halfdouble && pNewNotes->GetDifficulty() != Difficulty_Medium) - continue; - // 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 ); } }