View Single Post
  #11  
Old 12-13-2001, 07:09 AM
entravial entravial is offline
Registered User
entravial's Avatar
Join Date: Mar 2001
Posts: 825
entravial is on a distinguished road
Send a message via ICQ to entravial Send a message via AIM to entravial Send a message via Yahoo to 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
__________________


If the post says ~AlphaFlame~, that's who's posting. If not, it's Entravial (owner)
Reply With Quote