summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-04-16 02:17:15 +0200
committerLioncash <mathew1800@gmail.com>2019-04-29 07:37:51 +0200
commit69a2003a8e904399a84ec9d9573d77cdccb359d2 (patch)
tree0832deca2738710a7fa397f507288d73471b16cb /src/core/hle/kernel/svc.cpp
parentMerge pull request #2378 from lioncash/ro (diff)
downloadyuzu-69a2003a8e904399a84ec9d9573d77cdccb359d2.tar
yuzu-69a2003a8e904399a84ec9d9573d77cdccb359d2.tar.gz
yuzu-69a2003a8e904399a84ec9d9573d77cdccb359d2.tar.bz2
yuzu-69a2003a8e904399a84ec9d9573d77cdccb359d2.tar.lz
yuzu-69a2003a8e904399a84ec9d9573d77cdccb359d2.tar.xz
yuzu-69a2003a8e904399a84ec9d9573d77cdccb359d2.tar.zst
yuzu-69a2003a8e904399a84ec9d9573d77cdccb359d2.zip
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index e5d4d6b55..bb12f9ac7 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1776,7 +1776,7 @@ static ResultCode SetThreadCoreMask(Core::System& system, Handle thread_handle,
if (core == OnlyChangeMask) {
core = thread->GetIdealCore();
- } else if (core >= Core::NUM_CPU_CORES && core != static_cast<u32>(-1)) {
+ } else if (core >= Core::NUM_CPU_CORES && core != static_cast<u32>(THREADPROCESSORID_DONT_UPDATE)) {
LOG_ERROR(Kernel_SVC, "Invalid core specified, got {}", core);
return ERR_INVALID_PROCESSOR_ID;
}