Quote from: Pumaman on Tue 06/09/2005 23:28:46QuoteUsing "String"s I get these flooding ac.log:
Yes, the last couple of betas have done this -- it's in case anyone has any serious errors with the new Strings, it will help me debug them. Obviously I'll remove the logging before 2.71 Final.
Ok, sorry about that.
My hard drive had gone to sleep and the game paused for a second while it warmed up again to write the file. I thought it might have been an oversight.
I did notice this (with the new left to right precedence enabled):
float x = -y + z;
is equivalent to:
float x = -(y + z);
rather than the expected:
float x = (-y) + (z);