Closed dtremblay closed 3 years ago
In the IDE, this works:
z=1 z=-z print z
returns -1.
If I use this,
z=1 z=z*-1 print z
returns 65535. The Foenix FMX correctly returns -1.
This is an issue with the IDE's math co-processor. The signed integers were not handled properly. This is now fixed in release-0.5.3.7.
In the IDE, this works:
returns -1.
If I use this,
returns 65535. The Foenix FMX correctly returns -1.