diff options
author | Lioncash <mathew1800@gmail.com> | 2019-11-27 11:07:08 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-11-27 11:11:02 +0100 |
commit | a3149536e2b8811595d39a9bec522f2d225406cb (patch) | |
tree | bd6e8e5e219731e6f664500b6d7f0a850e96d586 /src/core/file_sys | |
parent | Merge pull request #3164 from ReinUsesLisp/half-cast-float (diff) | |
download | yuzu-a3149536e2b8811595d39a9bec522f2d225406cb.tar yuzu-a3149536e2b8811595d39a9bec522f2d225406cb.tar.gz yuzu-a3149536e2b8811595d39a9bec522f2d225406cb.tar.bz2 yuzu-a3149536e2b8811595d39a9bec522f2d225406cb.tar.lz yuzu-a3149536e2b8811595d39a9bec522f2d225406cb.tar.xz yuzu-a3149536e2b8811595d39a9bec522f2d225406cb.tar.zst yuzu-a3149536e2b8811595d39a9bec522f2d225406cb.zip |
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/directory.h | 2 |
1 files changed, 1 insertions, 1 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 @@ namespace FileSys { -enum EntryType : u8 { +enum class EntryType : u8 { Directory = 0, File = 1, }; |