mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 08:03:45 +01:00
Fix fs::GetRecursiveSubPaths trying to get directory lists for files
This commit is contained in:
parent
8621e6de5d
commit
33eed6eb84
@ -377,7 +377,9 @@ void GetRecursiveSubPaths(std::string path, std::vector<std::string> &dst)
|
||||
const DirListNode &n = content[i];
|
||||
std::string fullpath = path + DIR_DELIM + n.name;
|
||||
dst.push_back(fullpath);
|
||||
GetRecursiveSubPaths(fullpath, dst);
|
||||
if (n.dir) {
|
||||
GetRecursiveSubPaths(fullpath, dst);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user