Corrected parameter order for FloatToString

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40460
This commit is contained in:
Scott Ehlert 2007-02-08 04:53:56 +00:00
parent 67c76a9380
commit db676e8bfc

View File

@ -153,9 +153,9 @@ native Float:StringToFloat(const String:str[]);
/**
* Converts a floating point number to a string.
*
* @param num Floating point number to convert.
* @param str Buffer to store string in.
* @param maxlength Maximum length of string buffer.
* @param num Floating point number to convert.
* @return Number of cells written to buffer.
*/
native FloatToString(String:str[], maxlength, Float:num);
native FloatToString(Float:num, String:str[], maxlength);