From 3bb7890d5bda4ebd6ed07fd7f18093de229b542f Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 4 Jun 2011 19:42:06 -0400 Subject: [PATCH] Load SMA files first over SM. --- src/NotesLoader.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NotesLoader.cpp b/src/NotesLoader.cpp index 05112c51e0..88f68787aa 100644 --- a/src/NotesLoader.cpp +++ b/src/NotesLoader.cpp @@ -40,12 +40,12 @@ bool NotesLoader::LoadFromDir( const RString &sPath, Song &out, set &Bl SSCLoader::TidyUpData( out, false ); return true; } - SMLoader::GetApplicableFiles( sPath, list ); - if (!list.empty() ) - return SMLoader::LoadFromDir( sPath, out ); SMALoader::GetApplicableFiles( sPath, list ); if (!list.empty() ) return SMALoader::LoadFromDir( sPath, out ); + SMLoader::GetApplicableFiles( sPath, list ); + if (!list.empty() ) + return SMLoader::LoadFromDir( sPath, out ); DWILoader::GetApplicableFiles( sPath, list ); if( !list.empty() ) return DWILoader::LoadFromDir( sPath, out, BlacklistedImages );