diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-20 03:08:15 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-20 03:08:50 +0200 |
commit | bbd6429ecb343e763594925e524f9f2193bd4c1b (patch) | |
tree | a93f43c6f629fa14ed18a0254fb1594ccd1594f7 /src/core/file_sys/partition_filesystem.cpp | |
parent | Merge pull request #726 from lioncash/overload (diff) | |
download | yuzu-bbd6429ecb343e763594925e524f9f2193bd4c1b.tar yuzu-bbd6429ecb343e763594925e524f9f2193bd4c1b.tar.gz yuzu-bbd6429ecb343e763594925e524f9f2193bd4c1b.tar.bz2 yuzu-bbd6429ecb343e763594925e524f9f2193bd4c1b.tar.lz yuzu-bbd6429ecb343e763594925e524f9f2193bd4c1b.tar.xz yuzu-bbd6429ecb343e763594925e524f9f2193bd4c1b.tar.zst yuzu-bbd6429ecb343e763594925e524f9f2193bd4c1b.zip |
Diffstat (limited to 'src/core/file_sys/partition_filesystem.cpp')
-rw-r--r-- | src/core/file_sys/partition_filesystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/partition_filesystem.cpp b/src/core/file_sys/partition_filesystem.cpp index d4097a510..7ccca1089 100644 --- a/src/core/file_sys/partition_filesystem.cpp +++ b/src/core/file_sys/partition_filesystem.cpp @@ -76,7 +76,7 @@ std::vector<std::shared_ptr<VfsFile>> PartitionFilesystem::GetFiles() const { } std::vector<std::shared_ptr<VfsDirectory>> PartitionFilesystem::GetSubdirectories() const { - return {}; + return pfs_dirs; } std::string PartitionFilesystem::GetName() const { |