TimingData: add allowEmpty parameter to TidyUpData. always false for now...

This commit is contained in:
Devin J. Pohly
2013-01-23 14:38:57 -05:00
parent 3d6f1c5227
commit 0ae7b0da85
5 changed files with 13 additions and 6 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ void ScreenHowToPlay::Init()
Steps *pSteps = SongUtil::GetClosestNotes( &m_Song, pStyle->m_StepsType, Difficulty_Beginner );
ASSERT_M( pSteps != NULL, ssprintf("No playable steps of StepsType '%s' for ScreenHowToPlay", StringConversion::ToString(pStyle->m_StepsType).c_str()) );
pSteps->m_Timing.TidyUpData();
pSteps->m_Timing.TidyUpData( false );
NoteData tempNoteData;
pSteps->GetNoteData( tempNoteData );
pStyle->GetTransformedNoteDataForStyle( PLAYER_1, tempNoteData, m_NoteData );