29.03.2015, 16:24
for(new i = 0; i != 6; i++) ... this will loop 6x
for(new i = 0; i != 5; i++) ... this will loop 5x
If you have 6 starts then you should loop 6x and not 5.
for(new i = 0; i != 5; i++) ... this will loop 5x
If you have 6 starts then you should loop 6x and not 5.