mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 11:25:42 -04: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)
|
BitField& operator<<=(DataType rhs)
|
||||||
{
|
{
|
||||||
SetValue(GetValue() >> rhs);
|
SetValue(GetValue() << rhs);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user