diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-19 20:36:22 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-19 21:46:17 +0200 |
commit | b879fb84a22cbc098e9da1f27592b3c2790205e5 (patch) | |
tree | 03406880371a04075cfa3ebfc6f2912af476d39e /src | |
parent | Merge pull request #709 from lioncash/thread-local (diff) | |
download | yuzu-b879fb84a22cbc098e9da1f27592b3c2790205e5.tar yuzu-b879fb84a22cbc098e9da1f27592b3c2790205e5.tar.gz yuzu-b879fb84a22cbc098e9da1f27592b3c2790205e5.tar.bz2 yuzu-b879fb84a22cbc098e9da1f27592b3c2790205e5.tar.lz yuzu-b879fb84a22cbc098e9da1f27592b3c2790205e5.tar.xz yuzu-b879fb84a22cbc098e9da1f27592b3c2790205e5.tar.zst yuzu-b879fb84a22cbc098e9da1f27592b3c2790205e5.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 5ad923fe7..c6b0bb442 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -795,8 +795,9 @@ static ResultCode SetThreadCoreMask(Handle thread_handle, u32 core, u64 mask) { return ERR_INVALID_HANDLE; } - if (core == THREADPROCESSORID_DEFAULT) { - ASSERT(thread->owner_process->ideal_processor != THREADPROCESSORID_DEFAULT); + if (core == static_cast<u32>(THREADPROCESSORID_DEFAULT)) { + ASSERT(thread->owner_process->ideal_processor != + static_cast<u8>(THREADPROCESSORID_DEFAULT)); // Set the target CPU to the one specified in the process' exheader. core = thread->owner_process->ideal_processor; mask = 1ull << core; @@ -811,7 +812,7 @@ static ResultCode SetThreadCoreMask(Handle thread_handle, u32 core, u64 mask) { if (core == OnlyChangeMask) { core = thread->ideal_core; - } else if (core >= Core::NUM_CPU_CORES && core != -1) { + } else if (core >= Core::NUM_CPU_CORES && core != static_cast<u32>(-1)) { return ResultCode(ErrorModule::Kernel, ErrCodes::InvalidProcessorId); } |