Bleh, fixed compiler error in console.inc caused by previous changeset.

This commit is contained in:
Scott Ehlert 2010-07-07 02:27:59 -05:00
parent 6f16fc77b8
commit 9d5e994c01

View File

@ -597,12 +597,12 @@ native ResetConVar(Handle:convar, bool:replicate=false, bool:notify=false);
* Retrieves the default string value of a console variable. * Retrieves the default string value of a console variable.
* *
* @param convar Handle to the convar. * @param convar Handle to the convar.
* @param default Buffer to store the default value of the convar. * @param value Buffer to store the default value of the convar.
* @param maxlength Maximum length of string buffer. * @param maxlength Maximum length of string buffer.
* @return Number of bytes written to the buffer (UTF-8 safe). * @return Number of bytes written to the buffer (UTF-8 safe).
* @error Invalid or corrupt Handle. * @error Invalid or corrupt Handle.
*/ */
native GetConVarDefault(Handle:convar, String:default[], maxlength); native GetConVarDefault(Handle:convar, String:value[], maxlength);
/** /**
* Returns the bitstring of flags on a console variable. * Returns the bitstring of flags on a console variable.