I see what is happening here, but not sure what I can do about it.
- I put the following expression into a label: (4.97 * 12) % 12, and get the result 11.64
- If I add toInt to the expression: toInt((4.97 * 12) % 12), the result rounds up to the nearest integer. Instead of getting 11 from 11.64, I get 12.
This is really messing up my conversion. Does anyone know what can be done to fix this issue?