OpenSAGE/FixedMath.NET

Incorrect Use of Bitwise Operator

Opened this issue · 0 comments

x.m_rawValue == Fix64Constants.MIN_VALUE & y.m_rawValue == -1 ?

The condition of the ternary operator should use the boolean comparison "and" operator and not the bitwise "and" operator.