summaryrefslogtreecommitdiff
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorGravatar bunnei2018-11-16 06:59:07 -0800
committerGravatar GitHub2018-11-16 06:59:07 -0800
commit238bc4a077e66409cd9a0d4884f0dd9b25a992a8 (patch)
tree8264f430e591097c1f95cd832632738e3da0a430 /src/core/file_sys
parentMerge pull request #1710 from ogniK5377/palma-lets-go (diff)
parentfile_sys/errors: Remove currently unused filesystem error codes (diff)
downloadyuzu-238bc4a077e66409cd9a0d4884f0dd9b25a992a8.tar.gz
yuzu-238bc4a077e66409cd9a0d4884f0dd9b25a992a8.tar.xz
yuzu-238bc4a077e66409cd9a0d4884f0dd9b25a992a8.zip
Merge pull request #1706 from lioncash/file-err
file_sys/errors: Clean up error code values
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/errors.h25
1 files changed, 5 insertions, 20 deletions
diff --git a/src/core/file_sys/errors.h b/src/core/file_sys/errors.h
index fea0593c7..e4a4ee4ab 100644
--- a/src/core/file_sys/errors.h
+++ b/src/core/file_sys/errors.h
@@ -8,25 +8,10 @@
8 8
9namespace FileSys { 9namespace FileSys {
10 10
11namespace ErrCodes { 11constexpr ResultCode ERROR_PATH_NOT_FOUND{ErrorModule::FS, 1};
12enum { 12constexpr ResultCode ERROR_ENTITY_NOT_FOUND{ErrorModule::FS, 1002};
13 NotFound = 1, 13constexpr ResultCode ERROR_SD_CARD_NOT_FOUND{ErrorModule::FS, 2001};
14 TitleNotFound = 1002, 14constexpr ResultCode ERROR_INVALID_OFFSET{ErrorModule::FS, 6061};
15 SdCardNotFound = 2001, 15constexpr ResultCode ERROR_INVALID_SIZE{ErrorModule::FS, 6062};
16 RomFSNotFound = 2520,
17};
18}
19
20constexpr ResultCode ERROR_PATH_NOT_FOUND(ErrorModule::FS, ErrCodes::NotFound);
21
22// TODO(bunnei): Replace these with correct errors for Switch OS
23constexpr ResultCode ERROR_INVALID_PATH(-1);
24constexpr ResultCode ERROR_UNSUPPORTED_OPEN_FLAGS(-1);
25constexpr ResultCode ERROR_INVALID_OPEN_FLAGS(-1);
26constexpr ResultCode ERROR_FILE_NOT_FOUND(-1);
27constexpr ResultCode ERROR_UNEXPECTED_FILE_OR_DIRECTORY(-1);
28constexpr ResultCode ERROR_DIRECTORY_ALREADY_EXISTS(-1);
29constexpr ResultCode ERROR_FILE_ALREADY_EXISTS(-1);
30constexpr ResultCode ERROR_DIRECTORY_NOT_EMPTY(-1);
31 16
32} // namespace FileSys 17} // namespace FileSys