From 3533fad7aebcf4ffe6a5e3618a1228dc107fbbbb Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 14 Aug 2006 04:04:20 +0000 Subject: [PATCH] Adjust comments. --- stepmania/src/NotesLoaderKSF.cpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/stepmania/src/NotesLoaderKSF.cpp b/stepmania/src/NotesLoaderKSF.cpp index 2358179dc3..a056f7d857 100644 --- a/stepmania/src/NotesLoaderKSF.cpp +++ b/stepmania/src/NotesLoaderKSF.cpp @@ -240,14 +240,6 @@ bool KSFLoader::LoadFromKSFFile( const RString &sPath, Steps &out, const Song &s /* Remember when each hold starts; ignore the middle. */ if( iHoldStartRow[t] == -1 ) iHoldStartRow[t] = BeatToNoteRow(m_fCurBeat); - - /* This code doesn't work yet: this is merely conceptual for the future. */ - /* - else - { - notedata.SetTapNote( t, BeatToNoteRow(m_fCurBeat), TAP_ORIGINAL_TICK_COUNT ); - } - */ continue; } @@ -257,7 +249,10 @@ bool KSFLoader::LoadFromKSFFile( const RString &sPath, Steps &out, const Song &s if( iHoldStartRow[t] == iEndRow ) notedata.SetTapNote( t, iHoldStartRow[t], TAP_ORIGINAL_TAP ); else + { + //notedata.AddHoldNote( t, iHoldStartRow[t], iEndRow , TAP_ORIGINAL_PUMP_HEAD ); notedata.AddHoldNote( t, iHoldStartRow[t], iEndRow , TAP_ORIGINAL_HOLD_HEAD ); + } iHoldStartRow[t] = -1; }