15.05.2010, 19:05
i asume you initialized the array for the checkpoints in a too small array, like
...so the 21st checkpoints cant fit into that array. simply raise the size of it, it wont hurt if it wastes some bytes only:
Код:
new RCP[20][3];
Код:
new RCP[100][3];