summaryrefslogtreecommitdiff
path: root/src/core/file_sys/filesystem.h
diff options
context:
space:
mode:
authorGravatar Subv2018-03-19 22:57:34 -0500
committerGravatar Subv2018-03-19 22:57:34 -0500
commitfc44261dd1304c7dd1f38999a13ef9734c23b69a (patch)
tree91cbdaae10e1e5b909cab874f9afe8fbbb2d4ed7 /src/core/file_sys/filesystem.h
parentFS: Implement MountSdCard. (diff)
downloadyuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.tar.gz
yuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.tar.xz
yuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.zip
FS: Support the file Append open mode.
Diffstat (limited to 'src/core/file_sys/filesystem.h')
-rw-r--r--src/core/file_sys/filesystem.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/file_sys/filesystem.h b/src/core/file_sys/filesystem.h
index 94ad2abf2..4c9993efa 100644
--- a/src/core/file_sys/filesystem.h
+++ b/src/core/file_sys/filesystem.h
@@ -35,6 +35,7 @@ enum EntryType : u32 {
35enum class Mode : u32 { 35enum class Mode : u32 {
36 Read = 1, 36 Read = 1,
37 Write = 2, 37 Write = 2,
38 Append = 4,
38}; 39};
39 40
40class Path { 41class Path {