Made name param of GetConVarName() non-const (bug 4515, r=pred).

This commit is contained in:
Scott Ehlert 2010-07-14 20:29:29 -05:00
parent 7e54192713
commit 86f767e1aa

View File

@ -650,12 +650,12 @@ native SetConVarBounds(Handle:convar, ConVarBounds:type, bool:set, Float:value=0
* Retrieves the name of a console variable.
*
* @param convar Handle to the convar.
* @param value Buffer to store the name of the convar.
* @param name Buffer to store the name of the convar.
* @param maxlength Maximum length of string buffer.
* @noreturn
* @error Invalid or corrupt Handle.
*/
native GetConVarName(Handle:convar, const String:name[], maxlength);
native GetConVarName(Handle:convar, String:name[], maxlength);
funcenum ConVarQueryFinished
{