mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 12:55:47 -04:00
Fix compile errors on GCC
This commit is contained in:
@ -130,7 +130,7 @@ struct BitField
|
||||
|
||||
ALWAYS_INLINE void SetValue(DataType value)
|
||||
{
|
||||
data = (data & ~GetMask()) | (static_cast<BackingDataType>(value) << BitIndex) & GetMask();
|
||||
data = (data & ~GetMask()) | ((static_cast<BackingDataType>(value) << BitIndex) & GetMask());
|
||||
}
|
||||
|
||||
BackingDataType data;
|
||||
|
Reference in New Issue
Block a user