mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Common: Fix mask generation in BitField
This commit is contained in:

committed by
Lioncash

parent
ced89be3b7
commit
c334a6ca65
@ -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;
|
||||
|
Reference in New Issue
Block a user