From cdf80af9b9e9fa5e0565d4eb7800f78ba2e2263c Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Wed, 14 Feb 2007 10:57:26 +0000 Subject: [PATCH] Cleanup and style. --- stepmania/src/NotesLoaderKSF.cpp | 2 +- stepmania/src/NotesLoaderKSF.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/stepmania/src/NotesLoaderKSF.cpp b/stepmania/src/NotesLoaderKSF.cpp index c7e8ae5b43..84c54e2b11 100644 --- a/stepmania/src/NotesLoaderKSF.cpp +++ b/stepmania/src/NotesLoaderKSF.cpp @@ -452,7 +452,7 @@ static bool LoadGlobalData( const RString &sPath, Song &out, bool &bKIUCompliant bool bBPMStopNeeded = false; bool bTickChangeNeeded = false; - for (unsigned i=0; i < vNoteRows.size(); i++) + for( unsigned i=0; i < vNoteRows.size(); ++i ) { RString& NoteRowString = vNoteRows[i]; StripCrnl( NoteRowString ); diff --git a/stepmania/src/NotesLoaderKSF.h b/stepmania/src/NotesLoaderKSF.h index 877d3fd42e..c6f935147e 100644 --- a/stepmania/src/NotesLoaderKSF.h +++ b/stepmania/src/NotesLoaderKSF.h @@ -6,8 +6,6 @@ #include "NotesLoader.h" class Song; -class Steps; -class NoteData; class KSFLoader: public NotesLoader {