Disable SMALoader for Linux.
Hopefully this is temporary.
This commit is contained in:
+3
-1
@@ -1,8 +1,8 @@
|
|||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "NotesLoader.h"
|
#include "NotesLoader.h"
|
||||||
#include "NotesLoaderSM.h"
|
#include "NotesLoaderSM.h"
|
||||||
#include "NotesLoaderSSC.h"
|
|
||||||
#include "NotesLoaderSMA.h"
|
#include "NotesLoaderSMA.h"
|
||||||
|
#include "NotesLoaderSSC.h"
|
||||||
#include "NotesLoaderDWI.h"
|
#include "NotesLoaderDWI.h"
|
||||||
#include "NotesLoaderBMS.h"
|
#include "NotesLoaderBMS.h"
|
||||||
#include "NotesLoaderPMS.h"
|
#include "NotesLoaderPMS.h"
|
||||||
@@ -43,9 +43,11 @@ bool NotesLoader::LoadFromDir( const RString &sPath, Song &out, set<RString> &Bl
|
|||||||
SMLoader::GetApplicableFiles( sPath, list );
|
SMLoader::GetApplicableFiles( sPath, list );
|
||||||
if (!list.empty() )
|
if (!list.empty() )
|
||||||
return SMLoader::LoadFromDir( sPath, out );
|
return SMLoader::LoadFromDir( sPath, out );
|
||||||
|
#if defined(_MSC_VER) || defined(MACOSX)
|
||||||
SMALoader::GetApplicableFiles( sPath, list );
|
SMALoader::GetApplicableFiles( sPath, list );
|
||||||
if (!list.empty() )
|
if (!list.empty() )
|
||||||
return SMALoader::LoadFromDir( sPath, out );
|
return SMALoader::LoadFromDir( sPath, out );
|
||||||
|
#endif
|
||||||
DWILoader::GetApplicableFiles( sPath, list );
|
DWILoader::GetApplicableFiles( sPath, list );
|
||||||
if( !list.empty() )
|
if( !list.empty() )
|
||||||
return DWILoader::LoadFromDir( sPath, out, BlacklistedImages );
|
return DWILoader::LoadFromDir( sPath, out, BlacklistedImages );
|
||||||
|
|||||||
Reference in New Issue
Block a user