From 5bfc05c13af7e78218fd8935e23dee0308590cb9 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 16 May 2011 17:32:00 -0400 Subject: [PATCH] [splittiming] Fix #TICKCOUNTS saving improperly. --- src/NotesLoaderKSF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NotesLoaderKSF.cpp b/src/NotesLoaderKSF.cpp index 862c4bd485..3933dbbf81 100644 --- a/src/NotesLoaderKSF.cpp +++ b/src/NotesLoaderKSF.cpp @@ -168,7 +168,7 @@ static bool LoadFromKSFFile( const RString &sPath, Steps &out, const Song &song, LOG->UserLog( "Song file", sPath, "has an invalid tick count: %d.", iTickCount ); return false; } - out.m_Timing.AddTickcountSegment(TickcountSegment(0, iTickCount)); + stepsTiming.AddTickcountSegment(TickcountSegment(0, iTickCount)); } else if( sValueName=="DIFFICULTY" )