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

This commit is contained in:
Scott Ehlert 2010-07-07 02:29:23 -05:00
parent 51bee0f420
commit 7d97de8a10

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.
*
* @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.
* @return Number of bytes written to the buffer (UTF-8 safe).
* @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.