diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-20 21:32:36 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-21 15:51:43 -0500 |
commit | 8e50d6002bd12dde7e4ba4fd3da1b53864c4058c (patch) | |
tree | be6d0f47d8418a61a8e6f86ce0dcdbecf801bebd /src/core/hle/result.h | |
parent | d9a91d76785da6d0fa32ce32417e12023c8f394e (diff) |
fsp_srv: Various improvements to IStorage:Read implementation.
Diffstat (limited to 'src/core/hle/result.h')
-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 10ddc4feb..656e1b4a7 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h @@ -19,6 +19,8 @@ enum class ErrorDescription : u32 { Success = 0, RemoteProcessDead = 301, + InvalidOffset = 6061, + InvalidLength = 6062, }; /** |