Operator /= multiplying instead of dividing.

Here you can post threads specific to the current release of the core (099)

Moderator: POL Developer

Post Reply
Terciob
Master Poster
Posts: 90
Joined: Fri Nov 07, 2008 3:47 am

Operator /= multiplying instead of dividing.

Post by Terciob »

I'm using last core "pol-core-x64-2013-09-03" and:

Code: Select all

var math := 100;
math /= 10;
print ("math "+math);
prints 1000 instead of 10, so i think "/=" is multiplying instead of dividing.

And only occurs with "/=" operator, example bellow is fine:

Code: Select all

var math := 100;
math := math / 10;
print ("math "+math);
Turley
POL Developer
Posts: 670
Joined: Sun Feb 05, 2006 4:45 am

Re: Operator /= multiplying instead of dividing.

Post by Turley »

Mmmmh damn fixed in latest rev.
Post Reply