]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cmd.h
svvm_cmds: Implement built-in #352 (registercommand) for SSQC
[xonotic/darkplaces.git] / cmd.h
diff --git a/cmd.h b/cmd.h
index 445e08c1d221adf6c9602d4a9cac1dea9388e484..f7b3b4d1078b31ae4d7bb902dfca225b1fcb9b5f 100644 (file)
--- a/cmd.h
+++ b/cmd.h
@@ -89,7 +89,7 @@ typedef struct cmd_function_s
        const char *name;
        const char *description;
        xcommand_t function;
-       qbool csqcfunc;
+       qbool qcfunc;
        qbool autofunc;
        qbool initstate; // indicates this command existed at init
 } cmd_function_t;
@@ -98,7 +98,7 @@ typedef struct cmd_function_s
 typedef struct cmd_userdefined_s
 {
        // csqc functions - this is a mess
-       cmd_function_t *csqc_functions;
+       cmd_function_t *qc_functions;
 
        // aliases
        cmd_alias_t *alias;