Quote:
Originally posted by entravial
~AlphaFlame~
I thought for ran until a condition wasn't true =/
for (i=0;i<4;i++){}
instead of
for (i=1;i>6;i++){}
Since your for loop breaks down as
i=1;
while (i>6){
i++;
}
; just a thought based on how the F6 debugger handles for loops...
And try brinkster.com... good service and no ads o.o
|
The way you said it, the loop wouldn't run at all... >=greater than, <=less than. You had them the other way around.