fixed the parameter order here
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40457
This commit is contained in:
parent
6908858807
commit
d2887a8c3d
@ -135,12 +135,12 @@ native StringToInt(const String:str[], nBase=10);
|
|||||||
/**
|
/**
|
||||||
* Converts an integer to a string.
|
* Converts an integer to a string.
|
||||||
*
|
*
|
||||||
|
* @param num Integer to convert.
|
||||||
* @param str Buffer to store string in.
|
* @param str Buffer to store string in.
|
||||||
* @param maxlength Maximum length of string buffer.
|
* @param maxlength Maximum length of string buffer.
|
||||||
* @param num Integer to convert.
|
|
||||||
* @return Number of cells written to buffer.
|
* @return Number of cells written to buffer.
|
||||||
*/
|
*/
|
||||||
native IntToString(String:str[], maxlength, num);
|
native IntToString(num, String:str[], maxlength);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Converts a string to a floating point number.
|
* Converts a string to a floating point number.
|
||||||
|
Loading…
Reference in New Issue
Block a user