SA-MP Forums Archive
How to disable this? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: How to disable this? (/showthread.php?tid=301501)



How to disable this? - Dripac - 04.12.2011

Header size: 13636 bytes
Code size: 2775264 bytes
Data size: 6015324 bytes
Stack/heap size: 32768 bytes; estimated max. usage: unknown, due to recursion
Total requirements: 8836992 bytes


Re: How to disable this? - StreetGT - 04.12.2011

#pragma dynamic 8291


Re: How to disable this? - Dripac - 04.12.2011

It still shows


Re: How to disable this? - Babul - 04.12.2011

you got another problem, the recursion. check out if any functions are calling themselfes, maybe its in some loops, i rarely get this "warning"
as soon you terminated the recursion, the real usage of the stack/heap will showup. to raise this limit, simply add this to the compiler setting:
Код:
-S65536
the 65k is a bit huge, but it works fine for me yet...