Corrected parameter order for FloatToString
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40460
This commit is contained in:
parent
67c76a9380
commit
db676e8bfc
@ -153,9 +153,9 @@ native Float:StringToFloat(const String:str[]);
|
|||||||
/**
|
/**
|
||||||
* Converts a floating point number to a string.
|
* Converts a floating point number to a string.
|
||||||
*
|
*
|
||||||
|
* @param num Floating point number 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 Floating point number to convert.
|
|
||||||
* @return Number of cells written to buffer.
|
* @return Number of cells written to buffer.
|
||||||
*/
|
*/
|
||||||
native FloatToString(String:str[], maxlength, Float:num);
|
native FloatToString(Float:num, String:str[], maxlength);
|
||||||
|
Loading…
Reference in New Issue
Block a user