mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 13:55:38 +00:00
Bitfield: Fix incorrect shift in operator<<=
This commit is contained in:
parent
d58dbe04c0
commit
5babc076f5
|
@ -88,7 +88,7 @@ struct BitField
|
|||
|
||||
BitField& operator<<=(DataType rhs)
|
||||
{
|
||||
SetValue(GetValue() >> rhs);
|
||||
SetValue(GetValue() << rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue