]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cmd.h
GFX : Adjusted gfx/net.jpg size and orientation
[xonotic/darkplaces.git] / cmd.h
diff --git a/cmd.h b/cmd.h
index 31f8a08f190fb14df7e3e1631148f310668b1500..e9b2404aeee069d825f2adbf49b2eb23dd4cc792 100644 (file)
--- a/cmd.h
+++ b/cmd.h
@@ -170,13 +170,13 @@ extern cmd_userdefined_t cmd_userdefined_null; // intentionally empty
 
 // command interpreter for client commands injected by CSQC, MQC or client engine code
 // uses cmddefs_all
-extern cmd_state_t cmd_local;
+extern cmd_state_t *cmd_client;
 // command interpreter for server commands injected by MQC, SVQC, menu engine code or server engine code
 // uses cmddefs_all
-extern cmd_state_t cmd_local;
+extern cmd_state_t *cmd_server;
 // command interpreter for server commands received over network from clients
 // uses cmddefs_null
-extern cmd_state_t cmd_serverfromclient;
+extern cmd_state_t *cmd_serverfromclient;
 
 extern qbool host_stuffcmdsrun;