fix Asset::list_files

This commit is contained in:
2019-03-01 20:36:28 +01:00
parent a14afe5b44
commit 9f1ac3730f
7 changed files with 9 additions and 8 deletions

View File

@@ -37,8 +37,9 @@ bool Asset::exist(std::string path)
return false; // useless return for the stupid xcode
}
std::vector<std::string> Asset::list_files(std::string folder, bool is_asset, const std::string& filter_regex)
std::vector<std::string> Asset::list_files(std::string folder, const std::string& filter_regex)
{
bool is_asset = Asset::is_asset(folder);
std::vector<std::string> names;
#ifdef _WIN32
WIN32_FIND_DATAA fd;