console_cmds.c
changeset 1755 ff0ff67f708d
parent 1750 4590f0ae89a5
child 1761 f5eea0a214bb
equal deleted inserted replaced
1754:9018c946e499 1755:ff0ff67f708d
   870 	 		return true;
   870 	 		return true;
   871 	 	}
   871 	 	}
   872 
   872 
   873 	 	var = IConsoleVarGet(argv[1]);
   873 	 	var = IConsoleVarGet(argv[1]);
   874    	if (var != NULL && var->help != NULL) {
   874    	if (var != NULL && var->help != NULL) {
   875    		IConsolePrintF(_iconsole_color_warning, "%s.", var->help);
   875    		IConsoleHelp(var->help);
   876    		return true;
   876    		return true;
   877    	}
   877    	}
   878 
   878 
   879    	IConsoleError("command or variable not found");
   879    	IConsoleError("command or variable not found");
   880    	return true;
   880    	return true;