From 67cf31542301206f9429f07136125ea59646cec8 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Fri, 5 Feb 2021 01:28:15 +0100 Subject: [PATCH] early-access version 1414 --- README.md | 2 +- src/core/hle/kernel/k_affinity_mask.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8454ee0a4..6d8f4d075 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 1413. +This is the source code for early-access 1414. ## Legal Notice diff --git a/src/core/hle/kernel/k_affinity_mask.h b/src/core/hle/kernel/k_affinity_mask.h index dd73781cd..b906895fc 100755 --- a/src/core/hle/kernel/k_affinity_mask.h +++ b/src/core/hle/kernel/k_affinity_mask.h @@ -27,7 +27,7 @@ public: } [[nodiscard]] constexpr bool GetAffinity(s32 core) const { - return this->mask & GetCoreBit(core); + return (this->mask & GetCoreBit(core)) != 0; } constexpr void SetAffinity(s32 core, bool set) {