diff options
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 08a5db3b7..9860479ac 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -31,7 +31,8 @@ class Thread; | |||
| 31 | const ResultCode ERR_OUT_OF_HANDLES(ErrorDescription::OutOfMemory, ErrorModule::Kernel, | 31 | const ResultCode ERR_OUT_OF_HANDLES(ErrorDescription::OutOfMemory, ErrorModule::Kernel, |
| 32 | ErrorSummary::OutOfResource, ErrorLevel::Temporary); | 32 | ErrorSummary::OutOfResource, ErrorLevel::Temporary); |
| 33 | // TOOD: Verify code | 33 | // TOOD: Verify code |
| 34 | const ResultCode ERR_INVALID_HANDLE = InvalidHandle(ErrorModule::Kernel); | 34 | const ResultCode ERR_INVALID_HANDLE(ErrorDescription::InvalidHandle, ErrorModule::Kernel, |
| 35 | ErrorSummary::InvalidArgument, ErrorLevel::Permanent); | ||
| 35 | 36 | ||
| 36 | enum KernelHandle : Handle { | 37 | enum KernelHandle : Handle { |
| 37 | CurrentThread = 0xFFFF8000, | 38 | CurrentThread = 0xFFFF8000, |