Closed hajduakos closed 5 years ago
RationalNumberType always returns an unsigned result. If the number is negative, we have to convert it. For example, the result of 2-3 on 8 bits is 255.
2-3
255
Fixed in 265665b
RationalNumberType always returns an unsigned result. If the number is negative, we have to convert it. For example, the result of
2-3
on 8 bits is255
.