diff options
| author | 2019-11-27 23:23:01 -0500 | |
|---|---|---|
| committer | 2019-11-27 23:23:01 -0500 | |
| commit | c47fc3301d75f9f3924335d674e516d2670b8aab (patch) | |
| tree | c5359b18494a8e2ff8f0df6f3a52b0ca3a03e211 /src/core/hle | |
| parent | Merge pull request #3174 from lioncash/optional (diff) | |
| parent | file_sys/directory: Make EntryType an enum class (diff) | |
| download | yuzu-c47fc3301d75f9f3924335d674e516d2670b8aab.tar.gz yuzu-c47fc3301d75f9f3924335d674e516d2670b8aab.tar.xz yuzu-c47fc3301d75f9f3924335d674e516d2670b8aab.zip | |
Merge pull request #3170 from lioncash/enum
file_sys/directory: Make EntryType an enum class
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp index 5874ed6bd..ea9cc901e 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp | |||
| @@ -256,8 +256,8 @@ public: | |||
| 256 | 256 | ||
| 257 | // TODO(DarkLordZach): Verify that this is the correct behavior. | 257 | // TODO(DarkLordZach): Verify that this is the correct behavior. |
| 258 | // Build entry index now to save time later. | 258 | // Build entry index now to save time later. |
| 259 | BuildEntryIndex(entries, backend->GetFiles(), FileSys::File); | 259 | BuildEntryIndex(entries, backend->GetFiles(), FileSys::EntryType::File); |
| 260 | BuildEntryIndex(entries, backend->GetSubdirectories(), FileSys::Directory); | 260 | BuildEntryIndex(entries, backend->GetSubdirectories(), FileSys::EntryType::Directory); |
| 261 | } | 261 | } |
| 262 | 262 | ||
| 263 | private: | 263 | private: |