early-access version 1414
This commit is contained in:
parent
24e7f47921
commit
67cf315423
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue