]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/replicate.qh
REPLICATE_FIELD -> REPLICATE_INIT
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / replicate.qh
index 2083b4166fe122e9fb9aae39b396169775ac437c..a7a8d10df7fa4e06be5021bff35384a2330929a6 100644 (file)
@@ -9,9 +9,9 @@ string strcat1(string s) = #115; // FRIK_FILE
 const int REPLICATEVARS_SEND_ALL = -1; // sync all cvars with the server (init)
 const int REPLICATEVARS_CHECK = 0; // check if any cvar has changed and sync it with the server
 const int REPLICATEVARS_DESTROY = 1; // destroy data associated with cvars (shutdown)
-#define REPLICATE_FIELD(type, name) type name
+#define REPLICATE_INIT(type, name) type name
 #elif defined(SVQC)
-#define REPLICATE_FIELD(type, name) .type name
+#define REPLICATE_INIT(type, name) .type name
 #endif
 
 #ifdef GAMEQC