summaryrefslogtreecommitdiff
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-11 20:21:52 -0700
committerGravatar GitHub2018-07-11 20:21:52 -0700
commit7230ceb58405ae8e7d16c933a473e8efdd52de93 (patch)
treed78587e365bd6741ea9b528a1ca3376824e84cc4 /src/core/file_sys
parentMerge pull request #585 from janisozaur/patch-11 (diff)
parentServices/FS: Return the correct error code when trying to mount a nonexistent... (diff)
downloadyuzu-7230ceb58405ae8e7d16c933a473e8efdd52de93.tar.gz
yuzu-7230ceb58405ae8e7d16c933a473e8efdd52de93.tar.xz
yuzu-7230ceb58405ae8e7d16c933a473e8efdd52de93.zip
Merge pull request #559 from Subv/mount_savedata
Services/FS: Return the correct error code when trying to mount a nonexistent savedata.
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/errors.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/file_sys/errors.h b/src/core/file_sys/errors.h
index 0ed7d2a0c..d3e9a3829 100644
--- a/src/core/file_sys/errors.h
+++ b/src/core/file_sys/errors.h
@@ -11,6 +11,7 @@ namespace FileSys {
11namespace ErrCodes { 11namespace ErrCodes {
12enum { 12enum {
13 NotFound = 1, 13 NotFound = 1,
14 SaveDataNotFound = 1002,
14}; 15};
15} 16}
16 17