mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
Invert / combine shift out math
This commit is contained in:
parent
14f6aae14a
commit
ea2efcf8a1
1 changed files with 1 additions and 1 deletions
|
|
@ -533,8 +533,8 @@ namespace
|
|||
bits += 6;
|
||||
if (bits >= 8)
|
||||
{
|
||||
bytes[byte++] = words >> (bits - 8);
|
||||
bits -= 8;
|
||||
bytes[byte++] = words >> bits;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue