Add *.bml to BMSLoader::GetApplicableFiles. BML stands for Be-Music Longnote.

Because it is an extension to BMS, so most apps save them with bms extension anyway,
there exist some convertors that output to .bml files however.
This commit is contained in:
Thai Pangsakulyanont
2011-03-19 20:57:38 +07:00
parent 8d80ddedf2
commit 31f7b16f47
+1
View File
@@ -992,6 +992,7 @@ void BMSLoader::GetApplicableFiles( const RString &sPath, vector<RString> &out )
{
GetDirListing( sPath + RString("*.bms"), out );
GetDirListing( sPath + RString("*.bme"), out );
GetDirListing( sPath + RString("*.bml"), out );
}
bool BMSLoader::LoadFromDir( const RString &sDir, Song &out )