summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/filesystem.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-03-20 04:57:34 +0100
committerSubv <subv2112@gmail.com>2018-03-20 04:57:34 +0100
commitfc44261dd1304c7dd1f38999a13ef9734c23b69a (patch)
tree91cbdaae10e1e5b909cab874f9afe8fbbb2d4ed7 /src/core/file_sys/filesystem.h
parentFS: Implement MountSdCard. (diff)
downloadyuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.tar
yuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.tar.gz
yuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.tar.bz2
yuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.tar.lz
yuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.tar.xz
yuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.tar.zst
yuzu-fc44261dd1304c7dd1f38999a13ef9734c23b69a.zip
Diffstat (limited to '')
-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 {
enum class Mode : u32 {
Read = 1,
Write = 2,
+ Append = 4,
};
class Path {