j
k
j a
j l
On Fri, 2009-08-14 at 13:03 +0100, Damon Chaplin wrote:
if (u.int_value & 0x7f800000) fv = 0.0f;
Oops. That should be:
if (u.int_value & 0x7f800000 == 0) fv = 0.0f;
Damon
Back to the thread
Back to the list