31.07.2011, 10:17
The warning appears due recursion
You got a function which call itself again and again
That code would be enough to get that message
in that case put the tmp outside (global) or use a local static variable
Quote:
Stack/heap size: 16384 bytes; estimated max. usage: unknown, due to recursion |
That code would be enough to get that message
pawn Код:
#include <a_samp>
main() {
Stack();
}
Stack(count = 0) {
new
tmp[4_055] = "Hello World";
#pragma unused tmp
if(0 < (--count)) {
Stack(count);
}
}