adding support for pms files (if keysounds are broken I'll be fixing those too, I haven't checked yet). This isn't done/tested, totally WIP. If someone with the earlier versions of vstudio could make my changes (add NotesLoaderPMS) into the older .vcproj files that would be awesome
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
#include "NotesLoaderSM.h"
|
||||
#include "NotesLoaderDWI.h"
|
||||
#include "NotesLoaderBMS.h"
|
||||
#include "NotesLoaderPMS.h"
|
||||
#include "NotesLoaderKSF.h"
|
||||
#include "NotesLoaderMidi.h"
|
||||
#include "RageUtil.h"
|
||||
@@ -43,6 +44,9 @@ bool NotesLoader::LoadFromDir( const RString &sPath, Song &out, set<RString> &Bl
|
||||
BMSLoader::GetApplicableFiles( sPath, list );
|
||||
if( !list.empty() )
|
||||
return BMSLoader::LoadFromDir( sPath, out );
|
||||
PMSLoader::GetApplicableFiles( sPath, list );
|
||||
if( !list.empty() )
|
||||
return PMSLoader::LoadFromDir( sPath, out );
|
||||
KSFLoader::GetApplicableFiles( sPath, list );
|
||||
if( !list.empty() )
|
||||
return KSFLoader::LoadFromDir( sPath, out );
|
||||
|
||||
Reference in New Issue
Block a user