fixed the parameter order here

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40457
This commit is contained in:
David Anderson 2007-02-08 01:10:48 +00:00
parent 6908858807
commit d2887a8c3d

View File

@ -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.