fix data_buffer:put_number

This commit is contained in:
MihailRis
2025-01-21 02:30:59 +03:00
parent 57356e1d64
commit e247902cc6
2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -313,8 +313,8 @@ function bit_converter.bytes_to_uint16(bytes, order)
return
bit.bor(
bit.lshift(bytes[1], 8),
bytes[2], 0)
bit.lshift(bytes[2], 8),
bytes[1], 0)
end
function bit_converter.bytes_to_int64(bytes, order)