mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Common: Fix mask generation in BitField
This commit is contained in:
parent
ced89be3b7
commit
c334a6ca65
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ private:
|
|||
|
||||
__forceinline StorageType GetMask() const
|
||||
{
|
||||
return ((~(StorageTypeU)0) >> (8 * sizeof(T) - bits)) << position;
|
||||
return (((StorageTypeU)~0) >> (8 * sizeof(T) - bits)) << position;
|
||||
}
|
||||
|
||||
StorageType storage;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue