From 31f7b16f47fa828ca106ad77622029478055c842 Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Sat, 19 Mar 2011 20:57:38 +0700 Subject: [PATCH] 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. --- src/NotesLoaderBMS.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NotesLoaderBMS.cpp b/src/NotesLoaderBMS.cpp index 1946777e34..5b566cdba7 100644 --- a/src/NotesLoaderBMS.cpp +++ b/src/NotesLoaderBMS.cpp @@ -992,6 +992,7 @@ void BMSLoader::GetApplicableFiles( const RString &sPath, vector &out ) { GetDirListing( sPath + RString("*.bms"), out ); GetDirListing( sPath + RString("*.bme"), out ); + GetDirListing( sPath + RString("*.bml"), out ); } bool BMSLoader::LoadFromDir( const RString &sDir, Song &out )