From f93a43bdc4aef7f06958546afe419716398fbc6c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 13 Nov 2004 21:54:06 +0000 Subject: [PATCH] Fix formatting again--please fix your editor ... --- stepmania/src/NotesLoaderBMS.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/stepmania/src/NotesLoaderBMS.cpp b/stepmania/src/NotesLoaderBMS.cpp index 00f10c4e22..7ac3ae9d65 100644 --- a/stepmania/src/NotesLoaderBMS.cpp +++ b/stepmania/src/NotesLoaderBMS.cpp @@ -907,16 +907,16 @@ bool BMSLoader::LoadFromDir( CString sDir, Song &out ) if( sTag.find('l') != sTag.npos ) { unsigned lPos = sTag.find('l'); - if( sTag.substr(lPos-2,4) == "solo" ) - { - // (solo) -- an edit, apparently (Thanks Glenn!) - pSteps->SetDifficulty( DIFFICULTY_EDIT ); - } - else - { - // Any of [L7] [L14] (LIGHT7) (LIGHT14) (LIGHT) [L] ... you get the idea. - pSteps->SetDifficulty( DIFFICULTY_EASY ); - } + if( sTag.substr(lPos-2,4) == "solo" ) + { + // (solo) -- an edit, apparently (Thanks Glenn!) + pSteps->SetDifficulty( DIFFICULTY_EDIT ); + } + else + { + // Any of [L7] [L14] (LIGHT7) (LIGHT14) (LIGHT) [L] ... you get the idea. + pSteps->SetDifficulty( DIFFICULTY_EASY ); + } } // [A] (A) [ANOTHER] (ANOTHER) (ANOTHER7) Another (DP ANOTHER) (Another) -ANOTHER- [A7] [A14] etc etc etc else if( sTag.find('a') != sTag.npos )