diff options
author | bunnei <bunneidev@gmail.com> | 2018-06-01 00:22:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 00:22:18 +0200 |
commit | bdd68fc210d2b7138f8fcd22ec41c8b238500c28 (patch) | |
tree | 26e0a08c8a0f8dc383eb32d21a947f600d0bdd5d /src/core/hle/kernel/errors.h | |
parent | Merge pull request #491 from bunnei/rgba16f (diff) | |
parent | Kernel/Thread: Corrected a typo that caused the affinity mask to never be changed. (diff) | |
download | yuzu-bdd68fc210d2b7138f8fcd22ec41c8b238500c28.tar yuzu-bdd68fc210d2b7138f8fcd22ec41c8b238500c28.tar.gz yuzu-bdd68fc210d2b7138f8fcd22ec41c8b238500c28.tar.bz2 yuzu-bdd68fc210d2b7138f8fcd22ec41c8b238500c28.tar.lz yuzu-bdd68fc210d2b7138f8fcd22ec41c8b238500c28.tar.xz yuzu-bdd68fc210d2b7138f8fcd22ec41c8b238500c28.tar.zst yuzu-bdd68fc210d2b7138f8fcd22ec41c8b238500c28.zip |
Diffstat (limited to 'src/core/hle/kernel/errors.h')
-rw-r--r-- | src/core/hle/kernel/errors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/errors.h b/src/core/hle/kernel/errors.h index 5be20c878..e1b5430bf 100644 --- a/src/core/hle/kernel/errors.h +++ b/src/core/hle/kernel/errors.h @@ -21,7 +21,9 @@ enum { // Confirmed Switch OS error codes MisalignedAddress = 102, + InvalidProcessorId = 113, InvalidHandle = 114, + InvalidCombination = 116, Timeout = 117, SynchronizationCanceled = 118, TooLarge = 119, |