summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_priority_queue.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-01-27 21:17:14 +0100
committerbunnei <bunneidev@gmail.com>2022-01-27 21:17:14 +0100
commit3a1a3dd0db4256eef6382706c84c7b908b48bccd (patch)
treec042cfa45d8c043371e7e41d16ec619be5ed5803 /src/core/hle/kernel/k_priority_queue.h
parentMerge pull request #7783 from lioncash/abi-cexpr (diff)
downloadyuzu-3a1a3dd0db4256eef6382706c84c7b908b48bccd.tar
yuzu-3a1a3dd0db4256eef6382706c84c7b908b48bccd.tar.gz
yuzu-3a1a3dd0db4256eef6382706c84c7b908b48bccd.tar.bz2
yuzu-3a1a3dd0db4256eef6382706c84c7b908b48bccd.tar.lz
yuzu-3a1a3dd0db4256eef6382706c84c7b908b48bccd.tar.xz
yuzu-3a1a3dd0db4256eef6382706c84c7b908b48bccd.tar.zst
yuzu-3a1a3dd0db4256eef6382706c84c7b908b48bccd.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_priority_queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_priority_queue.h b/src/core/hle/kernel/k_priority_queue.h
index 0b894c8cf..bd779739d 100644
--- a/src/core/hle/kernel/k_priority_queue.h
+++ b/src/core/hle/kernel/k_priority_queue.h
@@ -258,7 +258,7 @@ private:
private:
constexpr void ClearAffinityBit(u64& affinity, s32 core) {
- affinity &= ~(u64(1) << core);
+ affinity &= ~(UINT64_C(1) << core);
}
constexpr s32 GetNextCore(u64& affinity) {