05.01.2016, 13:28
I dont believe this will do any harm whatsoever.
This happens when you try to allocate data in a array from a variable bigger than the array is limited to.
Example:
#define MAX_SOMETHING 5
new test[5];
Not correct:
Correct:
This happens when you try to allocate data in a array from a variable bigger than the array is limited to.
Example:
#define MAX_SOMETHING 5
new test[5];
Not correct:
Код:
for(new h=0; h<=MAX_SOMETHING; h++) { test[h]=1; }
Код:
for(new h=0; h<MAX_SOMETHING; h++) { test[h]=1; }