]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cvar.c
removed detection of GL_NV_texture_shader extension which was previously used for...
[xonotic/darkplaces.git] / cvar.c
diff --git a/cvar.c b/cvar.c
index b5fdf2b732f47756b803948a184d0b966bc4b841..886ea96e8b2385b842e86d2d0491f4bb8cde476c 100644 (file)
--- a/cvar.c
+++ b/cvar.c
@@ -203,7 +203,7 @@ void Cvar_CompleteCvarPrint (const char *partial)
        // Loop through the command list and print all matches
        for (cvar = cvar_vars; cvar; cvar = cvar->next)
                if (!strncasecmp(partial, cvar->name, len))
-                       Con_Printf("%s : \"%s\" (\"%s\") : %s\n", cvar->name, cvar->string, cvar->defstring, cvar->description);
+                       Con_Printf ("%c3%s%s : \"%s\" (\"%s\") : %s\n", STRING_COLOR_TAG, cvar->name, STRING_COLOR_DEFAULT_STR, cvar->string, cvar->defstring, cvar->description);
 }