diff options
author | Subv <subv2112@gmail.com> | 2014-12-16 06:33:41 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2014-12-18 01:21:38 +0100 |
commit | ea9ce0fba776eef8f9e4f3a86e71256091732a14 (patch) | |
tree | 9e698ba00993a4aff1df4d60f9fcf3cf135ee76c /src/core/hle/result.h | |
parent | Merge pull request #293 from lioncash/sops (diff) | |
download | yuzu-ea9ce0fba776eef8f9e4f3a86e71256091732a14.tar yuzu-ea9ce0fba776eef8f9e4f3a86e71256091732a14.tar.gz yuzu-ea9ce0fba776eef8f9e4f3a86e71256091732a14.tar.bz2 yuzu-ea9ce0fba776eef8f9e4f3a86e71256091732a14.tar.lz yuzu-ea9ce0fba776eef8f9e4f3a86e71256091732a14.tar.xz yuzu-ea9ce0fba776eef8f9e4f3a86e71256091732a14.tar.zst yuzu-ea9ce0fba776eef8f9e4f3a86e71256091732a14.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/result.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index 15c4a2677..14d2be4a2 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h @@ -17,6 +17,8 @@ /// Detailed description of the error. This listing is likely incomplete. enum class ErrorDescription : u32 { Success = 0, + FS_NotFound = 100, + FS_NotFormatted = 340, ///< This is used by the FS service when creating a SaveData archive InvalidSection = 1000, TooLarge = 1001, NotAuthorized = 1002, |