mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 21:35:46 +00:00
k_affinity_mask: Avoid implicit truncation to bool
This can cause compiler warnings. Instead, we can explicitly add a boolean expression around it to naturally turn the result into a bool.
This commit is contained in:
parent
65bd33b7c6
commit
7da83ef6f7
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]] constexpr bool GetAffinity(s32 core) const {
|
[[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) {
|
constexpr void SetAffinity(s32 core, bool set) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue