From e20c83334be3cb738a9fd10238629326b0a6fb5f Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Thu, 21 Feb 2013 21:51:39 -0500 Subject: [PATCH] That doesn't need to be a function --- qcsrc/common/notifications.qc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index 02a9d81b0..e5bd591ee 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -623,6 +623,8 @@ 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)) @@ -641,8 +643,4 @@ void Send_CSQC_Centerprint_Generic(entity e, float id, string s, float duration, }); } } -void Send_CSQC_Centerprint_Generic_Expire(entity e, float id) -{ - Send_CSQC_Centerprint_Generic(e, id, "", 1, 0); -} #endif // ifdef SVQC -- 2.39.2