From 9d5e994c018dacfdc637baea2af692bac336c937 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Wed, 7 Jul 2010 02:27:59 -0500 Subject: [PATCH] Bleh, fixed compiler error in console.inc caused by previous changeset. --- plugins/include/console.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/console.inc b/plugins/include/console.inc index b5dddc31..dd28371c 100644 --- a/plugins/include/console.inc +++ b/plugins/include/console.inc @@ -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.