I need some help with speed of codes
#2

I tested some weeks ago and while loop was slower than for loop.

pawn Код:
new
    i
;
while(i != MAX_PLAYERS)
{
    // Your code inside the loop
    i++;
}
pawn Код:
for(new i; i != MAX_PLAYERS; i++)
{
    // Your code inside the loop
}
Reply


Messages In This Thread
I need some help with speed of codes - by Mark k - 15.06.2010, 17:00
Re: I need some help with speed of codes - by RyDeR` - 15.06.2010, 18:50

Forum Jump:


Users browsing this thread: 2 Guest(s)