From db676e8bfce9124ce940fba55904a6fbc89e36d8 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Thu, 8 Feb 2007 04:53:56 +0000 Subject: [PATCH] Corrected parameter order for FloatToString --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40460 --- plugins/include/string.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/string.inc b/plugins/include/string.inc index b87503cd..b8dd34d4 100644 --- a/plugins/include/string.inc +++ b/plugins/include/string.inc @@ -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);