Wildcards are the difference between finding similar things, and finding nothing.

This commit is contained in:
Kyzentun
2014-12-08 15:18:39 -07:00
parent 89864fc890
commit c17f19c0d0
+1 -1
View File
@@ -402,7 +402,7 @@ void RageFileManager::GetDirListingWithMultipleExtensions( const RString &sPath,
for(vector<RString>::const_iterator curr_ext= ExtensionList.begin();
curr_ext != ExtensionList.end(); ++curr_ext)
{
GetDirListing(sPath + (*curr_ext), AddTo, bOnlyDirs, bReturnPathToo);
GetDirListing(sPath + "*." + (*curr_ext), AddTo, bOnlyDirs, bReturnPathToo);
}
}