From 3d005b3c2db17732f7325cb84d648c6c9f56a7bf Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Sat, 9 Feb 2013 07:23:22 -0500 Subject: [PATCH] Lets not make this a #warning actually... --- qcsrc/common/notifications.qh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/qcsrc/common/notifications.qh b/qcsrc/common/notifications.qh index 03436c4dd..34f34d5fd 100644 --- a/qcsrc/common/notifications.qh +++ b/qcsrc/common/notifications.qh @@ -627,10 +627,8 @@ void Dump_Notifications(float fh, float alsoprint); #endif #define CHECK_NOTIFICATION_2(net_type,net_name,infoname,centername) \ - #if infoname == NO_MSG \ - #if centername == NO_MSG \ - #warning PAIRED NOTIFICATION WITH NO SUBCALLS: ##net_type - ##net_name \ - #endif \ + #if (infoname == NO_MSG) && (centername == NO_MSG) \ + print(strcat("^1NOTIFICATION WITH NO SUBCALLS: ^7net_type = ", #net_type, ", net_name = ", #net_name, ".\n")); \ #endif float NOTIF_INFO_COUNT; -- 2.39.2