diff options
Diffstat (limited to '')
| -rw-r--r-- | src/core/hle/kernel/errors.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/errors.h b/src/core/hle/kernel/errors.h index 2be2fad82..8c2be2681 100644 --- a/src/core/hle/kernel/errors.h +++ b/src/core/hle/kernel/errors.h | |||
| @@ -30,6 +30,7 @@ enum { | |||
| 30 | SynchronizationCanceled = 118, | 30 | SynchronizationCanceled = 118, |
| 31 | TooLarge = 119, | 31 | TooLarge = 119, |
| 32 | InvalidEnumValue = 120, | 32 | InvalidEnumValue = 120, |
| 33 | NoSuchEntry = 121, | ||
| 33 | InvalidState = 125, | 34 | InvalidState = 125, |
| 34 | ResourceLimitExceeded = 132, | 35 | ResourceLimitExceeded = 132, |
| 35 | }; | 36 | }; |
| @@ -65,7 +66,7 @@ constexpr ResultCode ERR_INVALID_OBJECT_ADDR(-1); | |||
| 65 | constexpr ResultCode ERR_NOT_AUTHORIZED(-1); | 66 | constexpr ResultCode ERR_NOT_AUTHORIZED(-1); |
| 66 | /// Alternate code returned instead of ERR_INVALID_HANDLE in some code paths. | 67 | /// Alternate code returned instead of ERR_INVALID_HANDLE in some code paths. |
| 67 | constexpr ResultCode ERR_INVALID_HANDLE_OS(-1); | 68 | constexpr ResultCode ERR_INVALID_HANDLE_OS(-1); |
| 68 | constexpr ResultCode ERR_NOT_FOUND(-1); | 69 | constexpr ResultCode ERR_NOT_FOUND(ErrorModule::Kernel, ErrCodes::NoSuchEntry); |
| 69 | constexpr ResultCode RESULT_TIMEOUT(ErrorModule::Kernel, ErrCodes::Timeout); | 70 | constexpr ResultCode RESULT_TIMEOUT(ErrorModule::Kernel, ErrCodes::Timeout); |
| 70 | /// Returned when Accept() is called on a port with no sessions to be accepted. | 71 | /// Returned when Accept() is called on a port with no sessions to be accepted. |
| 71 | constexpr ResultCode ERR_NO_PENDING_SESSIONS(-1); | 72 | constexpr ResultCode ERR_NO_PENDING_SESSIONS(-1); |