From fdd3728ab64d923d58355ff5dfa0e9c95f490cf3 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 11 Nov 2011 14:21:29 -0500 Subject: [PATCH] Better var name, phrasing. --- src/NotesLoaderSM.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/NotesLoaderSM.cpp b/src/NotesLoaderSM.cpp index 73c9cf36cf..e3449b25d6 100644 --- a/src/NotesLoaderSM.cpp +++ b/src/NotesLoaderSM.cpp @@ -531,16 +531,16 @@ void SMLoader::ProcessFakes( TimingData &out, const RString line, const int rows } const float fBeat = RowToBeat( arrayFakeValues[0], rowsPerBeat ); - const float fNewBeat = StringToFloat( arrayFakeValues[1] ); + const float fSkippedBeats = StringToFloat( arrayFakeValues[1] ); - if(fNewBeat > 0) - out.AddSegment( FakeSegment(BeatToNoteRow(fBeat), fNewBeat) ); + if(fSkippedBeats > 0) + out.AddSegment( FakeSegment(BeatToNoteRow(fBeat), fSkippedBeats) ); else { LOG->UserLog("Song file", this->GetSongTitle(), - "has an invalid Fake at beat %f, BPM %f.", - fBeat, fNewBeat ); + "has an invalid Fake at beat %f, beats to skip %f.", + fBeat, fSkippedBeats ); } } }