Skip to content
Snippets Groups Projects
Commit bbd6429e authored by Lioncash's avatar Lioncash
Browse files

partition_filesystem: Return pfs_dirs member variable within GetSubdirectories()

This should be returned here, otherwise pfs_dirs is effectively only
ever added to, but never read.
parent d3cfaf95
No related branches found
No related tags found
No related merge requests found
...@@ -76,7 +76,7 @@ std::vector<std::shared_ptr<VfsFile>> PartitionFilesystem::GetFiles() const { ...@@ -76,7 +76,7 @@ std::vector<std::shared_ptr<VfsFile>> PartitionFilesystem::GetFiles() const {
} }
std::vector<std::shared_ptr<VfsDirectory>> PartitionFilesystem::GetSubdirectories() const { std::vector<std::shared_ptr<VfsDirectory>> PartitionFilesystem::GetSubdirectories() const {
return {}; return pfs_dirs;
} }
std::string PartitionFilesystem::GetName() const { std::string PartitionFilesystem::GetName() const {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment