From: Samual Lenks Date: Sat, 9 Feb 2013 12:23:22 +0000 (-0500) Subject: Lets not make this a #warning actually... X-Git-Tag: xonotic-v0.7.0~62^2~23^2~239 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3d005b3c2db17732f7325cb84d648c6c9f56a7bf;p=xonotic%2Fxonotic-data.pk3dir.git Lets not make this a #warning actually... --- 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;