Fix typo in 'bf_write'

This commit is contained in:
Kawe Mazidjatari 2023-04-18 20:14:20 +02:00
parent d22b91fd72
commit 437a54486d

View File

@ -513,7 +513,7 @@ void bf_write::WriteSBitLong(int data, int numbits)
// Do we have a valid # of bits to encode with?
Assert(numbits >= 1);
// Note: it does this wierdness here so it's bit-compatible with regular integer data in the buffer.
// Note: it does this weirdness here so it's bit-compatible with regular integer data in the buffer.
// (Some old code writes direct integers right into the buffer).
if (data < 0)
{