fix bit_converter.bytes_to_uint16
This commit is contained in:
parent
0b2e089ecf
commit
0e95d9d1af
@ -313,8 +313,8 @@ function bit_converter.bytes_to_uint16(bytes, order)
|
||||
|
||||
return
|
||||
bit.bor(
|
||||
bit.lshift(bytes[2], 8),
|
||||
bytes[1], 0)
|
||||
bit.lshift(bytes[1], 8),
|
||||
bytes[2], 0)
|
||||
end
|
||||
|
||||
function bit_converter.bytes_to_int64(bytes, order)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user