Merge branch 'MihailRis:main' into main

This commit is contained in:
Xertis
2025-01-20 00:26:23 +03:00
committed by GitHub
15 changed files with 287 additions and 6 deletions
+2 -2
View File
@@ -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)