Start removing Guitar Mode.

This was rushed in to begin with, and not
worth maintaining for us.
This commit is contained in:
Jason Felds
2011-07-30 15:20:27 -04:00
parent 45365c7c83
commit 6c15a82892
10 changed files with 1 additions and 1072 deletions
-4
View File
@@ -7,7 +7,6 @@
#include "NotesLoaderBMS.h"
#include "NotesLoaderPMS.h"
#include "NotesLoaderKSF.h"
#include "NotesLoaderMidi.h"
#include "RageUtil.h"
void NotesLoader::GetMainAndSubTitlesFromFullTitle( const RString &sFullTitle, RString &sMainTitleOut, RString &sSubTitleOut )
@@ -61,9 +60,6 @@ bool NotesLoader::LoadFromDir( const RString &sPath, Song &out, set<RString> &Bl
KSFLoader::GetApplicableFiles( sPath, list );
if( !list.empty() )
return KSFLoader::LoadFromDir( sPath, out );
MidiLoader::GetApplicableFiles( sPath, list );
if( !list.empty() )
return MidiLoader::LoadFromDir( sPath, out );
return false;
}