early-access version 1414

main
pineappleEA 2021-02-05 01:28:15 +01:00
parent 24e7f47921
commit 67cf315423
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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) {