[core,orders] fix update_read_delta

This commit is contained in:
akallabeth
2025-02-07 20:59:02 +01:00
parent 5a7d57fa60
commit 9e7e84c9ff

View File

@@ -866,7 +866,7 @@ static INLINE BOOL update_read_delta(wStream* s, INT32* value)
Stream_Read_UINT8(s, byte);
if (byte & 0x40)
uvalue = (byte | ((~0x3F) & 0xFF));
uvalue = (byte | ~0x3F);
else
uvalue = (byte & 0x3F);