diff options
| author | 2018-06-12 13:42:04 -0500 | |
|---|---|---|
| committer | 2018-06-18 19:26:01 -0500 | |
| commit | 5f57a70a7d49af76f54b390cee49bf970880323e (patch) | |
| tree | f8e0e0e524852d5806d8faf12bdf272f596bfc79 /src/core/file_sys | |
| parent | Merge pull request #555 from Subv/gpu_sysregs (diff) | |
| download | yuzu-5f57a70a7d49af76f54b390cee49bf970880323e.tar.gz yuzu-5f57a70a7d49af76f54b390cee49bf970880323e.tar.xz yuzu-5f57a70a7d49af76f54b390cee49bf970880323e.zip | |
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.h | 1 |
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 { | |||
| 11 | namespace ErrCodes { | 11 | namespace ErrCodes { |
| 12 | enum { | 12 | enum { |
| 13 | NotFound = 1, | 13 | NotFound = 1, |
| 14 | SaveDataNotFound = 1002, | ||
| 14 | }; | 15 | }; |
| 15 | } | 16 | } |
| 16 | 17 | ||