summaryrefslogtreecommitdiff
path: root/src/core/file_sys/filesystem.h
diff options
context:
space:
mode:
authorGravatar Subv2018-03-19 22:58:55 -0500
committerGravatar Subv2018-03-19 22:58:55 -0500
commita9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c (patch)
treed31aeca8eacb374ab130dcd2449744cde2d5befd /src/core/file_sys/filesystem.h
parentFS: Support the file Append open mode. (diff)
downloadyuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.tar.gz
yuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.tar.xz
yuzu-a9ba2c2000d9f2e4c6018aa6fc1e754eca82f72c.zip
FS: Updated the Directory Entry structure to match the Switch.
Diffstat (limited to 'src/core/file_sys/filesystem.h')
-rw-r--r--src/core/file_sys/filesystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/filesystem.h b/src/core/file_sys/filesystem.h
index 4c9993efa..5c91a46c2 100644
--- a/src/core/file_sys/filesystem.h
+++ b/src/core/file_sys/filesystem.h
@@ -27,7 +27,7 @@ enum LowPathType : u32 {
27 Wchar = 4, 27 Wchar = 4,
28}; 28};
29 29
30enum EntryType : u32 { 30enum EntryType : u8 {
31 Directory = 0, 31 Directory = 0,
32 File = 1, 32 File = 1,
33}; 33};