From d2887a8c3da79ba4d19ccfa250a58ae5c2581a03 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 8 Feb 2007 01:10:48 +0000 Subject: [PATCH] fixed the parameter order here --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40457 --- 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 6c715484..b87503cd 100644 --- a/plugins/include/string.inc +++ b/plugins/include/string.inc @@ -135,12 +135,12 @@ native StringToInt(const String:str[], nBase=10); /** * Converts an integer to a string. * + * @param num Integer to convert. * @param str Buffer to store string in. * @param maxlength Maximum length of string buffer. - * @param num Integer to convert. * @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.