Fix i64 sign check

This commit is contained in:
Rerumu
2022-06-26 02:28:14 -04:00
parent 5d4aa97cd5
commit ec20ac5482
+1 -1
View File
@@ -327,7 +327,7 @@ end
function Numeric.is_negative(value)
local _, data_2 = into_u32(value)
return data_2 > BIT_SET_31
return data_2 >= BIT_SET_31
end
function Numeric.is_zero(value)