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



_______________________________________________
[email protected] mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list

Reply via email to