diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-20 03:14:47 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-21 13:05:34 +0100 |
commit | 010bc677f36304964e753057740a8ca32a7dcb83 (patch) | |
tree | addf6c2eb4b90236e61ae038b7717d2f774f85c3 /src/core/hle/kernel/errors.h | |
parent | kernel/process_capability: Handle interrupt capability flags (diff) | |
download | yuzu-010bc677f36304964e753057740a8ca32a7dcb83.tar yuzu-010bc677f36304964e753057740a8ca32a7dcb83.tar.gz yuzu-010bc677f36304964e753057740a8ca32a7dcb83.tar.bz2 yuzu-010bc677f36304964e753057740a8ca32a7dcb83.tar.lz yuzu-010bc677f36304964e753057740a8ca32a7dcb83.tar.xz yuzu-010bc677f36304964e753057740a8ca32a7dcb83.tar.zst yuzu-010bc677f36304964e753057740a8ca32a7dcb83.zip |
Diffstat (limited to 'src/core/hle/kernel/errors.h')
-rw-r--r-- | src/core/hle/kernel/errors.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/errors.h b/src/core/hle/kernel/errors.h index a3d725866..ec574c097 100644 --- a/src/core/hle/kernel/errors.h +++ b/src/core/hle/kernel/errors.h @@ -31,6 +31,7 @@ constexpr ResultCode ERR_NOT_FOUND{ErrorModule::Kernel, 121}; constexpr ResultCode ERR_ALREADY_REGISTERED{ErrorModule::Kernel, 122}; constexpr ResultCode ERR_SESSION_CLOSED_BY_REMOTE{ErrorModule::Kernel, 123}; constexpr ResultCode ERR_INVALID_STATE{ErrorModule::Kernel, 125}; +constexpr ResultCode ERR_RESERVED_VALUE{ErrorModule::Kernel, 126}; constexpr ResultCode ERR_RESOURCE_LIMIT_EXCEEDED{ErrorModule::Kernel, 132}; } // namespace Kernel |