Posts: 988
Threads: 9
Joined: Jul 2006
Reputation:
0
Don't use more than 16000 bytes of memory in a function.
Posts: 870
Threads: 26
Joined: Mar 2009
Reputation:
0
There are 3 things that you can do about it ..
1. Learn more about the problem
2. Reduce your PAWN File lines
3. Just add one line to stop that message to display
Posts: 113
Threads: 1
Joined: Jun 2008
Reputation:
0
Is i assume Peter Corneile in third option thinked of using "#pragma dynamic" wich just increase max "optimal" size for stack, but also that extra space that isn't used still must be allocated. This is just bad workaround. I suggest you to try the hardest you can to reduce size(example. reduce array size if possible, etc.)
Posts: 152
Threads: 18
Joined: Mar 2009
Reputation:
0
Crtl+F for [256]
Change it to [128] unless it's MySQL from my understanding. If it's a talking/message string, reduce it to like [200] or something. This is the simplest way to fix it.