Remove tobit usage

This commit is contained in:
Firebolt 2021-10-17 14:51:26 -04:00
parent 8431ce37f1
commit d99cbb23d1
No known key found for this signature in database
GPG Key ID: 4219518A61A50458

View File

@ -34,7 +34,7 @@ local function unsign_i64(x)
return x
end
local function rip_u64(x) return math.floor(x / 0x100000000), (x % 0x100000000) % 2 ^ 32 end
local function rip_u64(x) return math.floor(x / 0x100000000), x % 0x100000000 end
local function merge_u64(hi, lo) return hi * 0x100000000 + lo end