diff options
| author | 2018-01-21 16:15:15 -0500 | |
|---|---|---|
| committer | 2018-01-21 16:15:15 -0500 | |
| commit | ab8525705bbd0ae62b567f301281ca516e7c5320 (patch) | |
| tree | 88be854c845cb826366acca96e07ccc62cc96695 /src/core/hle/result.h | |
| parent | Merge pull request #129 from Rozelette/master (diff) | |
| parent | file_sys: Clang format fixes. (diff) | |
| download | yuzu-ab8525705bbd0ae62b567f301281ca516e7c5320.tar.gz yuzu-ab8525705bbd0ae62b567f301281ca516e7c5320.tar.xz yuzu-ab8525705bbd0ae62b567f301281ca516e7c5320.zip | |
Merge pull request #123 from bunnei/fs
Initial implementation of RomFS filesystem and fsp-srv
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 @@ | |||
| 19 | enum class ErrorDescription : u32 { | 19 | enum class ErrorDescription : u32 { |
| 20 | Success = 0, | 20 | Success = 0, |
| 21 | RemoteProcessDead = 301, | 21 | RemoteProcessDead = 301, |
| 22 | InvalidOffset = 6061, | ||
| 23 | InvalidLength = 6062, | ||
| 22 | }; | 24 | }; |
| 23 | 25 | ||
| 24 | /** | 26 | /** |