]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Move that to the .qh file
authorSamual Lenks <samual@xonotic.org>
Fri, 22 Feb 2013 03:44:06 +0000 (22:44 -0500)
committerSamual Lenks <samual@xonotic.org>
Fri, 22 Feb 2013 03:44:06 +0000 (22:44 -0500)
qcsrc/common/notifications.qc
qcsrc/common/notifications.qh

index aec2efd2530847a9d8229b2eda4c0676815e8bf0..750f3bb59018e8dcf16adb0b15d82fc5b031626c 100644 (file)
@@ -625,8 +625,6 @@ void Send_Notification_WOVA(float broadcast, entity client,
 //  LEGACY NOTIFICATION SYSTEMS
 // =============================
 
-#define Send_CSQC_Centerprint_Generic_Expire(e,id) Send_CSQC_Centerprint_Generic(e, id, "", 1, 0)
-
 void Send_CSQC_Centerprint_Generic(entity e, float id, string s, float duration, float countdown_num)
 {
        if ((clienttype(e) == CLIENTTYPE_REAL) && (e.flags & FL_CLIENT))
index 6ca29ae3670c0aa2ac2d69fd4416c53548bc7c56..6a0f7f82cf085ca6a37915a160de38989a67d9ca 100644 (file)
@@ -67,7 +67,7 @@ void Send_Notification(float broadcast, entity client, float net_type, float net
 void Send_Notification_WOVA(float broadcast, entity client, float net_type, float net_name, string s1, string s2, string s3, string s4, float f1, float f2, float f3, float f4);
 
 void Send_CSQC_Centerprint_Generic(entity e, float id, string s, float duration, float countdown_num);
-void Send_CSQC_Centerprint_Generic_Expire(entity e, float id);
+#define Send_CSQC_Centerprint_Generic_Expire(e,id) Send_CSQC_Centerprint_Generic(e, id, "", 1, 0)
 #endif