diff options
| author | 2018-11-15 23:27:29 -0500 | |
|---|---|---|
| committer | 2018-11-16 00:13:50 -0500 | |
| commit | b725d1fdf7641661161815466a14ed7e8e26ce67 (patch) | |
| tree | f7db94a9c706a192288879fc2566b70298a7605f /src/core/hle/result.h | |
| parent | Fixed priority switching edge case for handheld (#1675) (diff) | |
| download | yuzu-b725d1fdf7641661161815466a14ed7e8e26ce67.tar.gz yuzu-b725d1fdf7641661161815466a14ed7e8e26ce67.tar.xz yuzu-b725d1fdf7641661161815466a14ed7e8e26ce67.zip | |
file_sys/errors: Extract FS-related error codes to file_sys/errors.h
Keeps filesystem-related error codes in one spot.
Diffstat (limited to 'src/core/hle/result.h')
| -rw-r--r-- | src/core/hle/result.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index c6b18cfba..bfb77cc31 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h | |||
| @@ -19,8 +19,6 @@ | |||
| 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, | ||
| 24 | }; | 22 | }; |
| 25 | 23 | ||
| 26 | /** | 24 | /** |