summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2019-11-27 05:07:08 -0500
committerGravatar Lioncash2019-11-27 05:11:02 -0500
commita3149536e2b8811595d39a9bec522f2d225406cb (patch)
treebd6e8e5e219731e6f664500b6d7f0a850e96d586 /src
parentMerge pull request #3164 from ReinUsesLisp/half-cast-float (diff)
downloadyuzu-a3149536e2b8811595d39a9bec522f2d225406cb.tar.gz
yuzu-a3149536e2b8811595d39a9bec522f2d225406cb.tar.xz
yuzu-a3149536e2b8811595d39a9bec522f2d225406cb.zip
file_sys/directory: Make EntryType an enum class
This can trivially be an enum class rather than a regular enum, making it more strongly typed.
Diffstat (limited to 'src')
-rw-r--r--src/core/file_sys/directory.h2
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/file_sys/directory.h b/src/core/file_sys/directory.h
index 7b5c509fb..0d73eecc9 100644
--- a/src/core/file_sys/directory.h
+++ b/src/core/file_sys/directory.h
@@ -15,7 +15,7 @@
15 15
16namespace FileSys { 16namespace FileSys {
17 17
18enum EntryType : u8 { 18enum class EntryType : u8 {
19 Directory = 0, 19 Directory = 0,
20 File = 1, 20 File = 1,
21}; 21};
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
263private: 263private: