Append a note about usage of the new buffer size (related to ce4ef6e272
)
This commit is contained in:
parent
24328568ed
commit
5f210d3404
@ -17,6 +17,11 @@
|
|||||||
* This is the buffer size AMX Mod X uses internally to retrieve strings from plugins.
|
* This is the buffer size AMX Mod X uses internally to retrieve strings from plugins.
|
||||||
* Most natives that take strings as arguments will implicitly truncate those to this maximum length.
|
* Most natives that take strings as arguments will implicitly truncate those to this maximum length.
|
||||||
* This has been raised to the current value with AMXX 1.8.3. Previously the limit was 3072.
|
* This has been raised to the current value with AMXX 1.8.3. Previously the limit was 3072.
|
||||||
|
*
|
||||||
|
* @note This is here mainly for documentation purposes. By default plugins don't even have enough
|
||||||
|
* memory available to create an array of this size. You probably should not use this to
|
||||||
|
* actually *declare* a buffer unless you *absolutely* have to. Look at #pragma dynamic
|
||||||
|
* to increase a plugins available memory.
|
||||||
*/
|
*/
|
||||||
#define MAX_STRING_LENGTH 16384
|
#define MAX_STRING_LENGTH 16384
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user