Bitfield: Fix incorrect shift in operator<<=

This commit is contained in:
Connor McLaughlin 2019-09-15 12:42:43 +10:00
parent d58dbe04c0
commit 5babc076f5

View file

@ -88,7 +88,7 @@ struct BitField
BitField& operator<<=(DataType rhs)
{
SetValue(GetValue() >> rhs);
SetValue(GetValue() << rhs);
return *this;
}