]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Lets not make this a #warning actually...
authorSamual Lenks <samual@xonotic.org>
Sat, 9 Feb 2013 12:23:22 +0000 (07:23 -0500)
committerSamual Lenks <samual@xonotic.org>
Sat, 9 Feb 2013 12:23:22 +0000 (07:23 -0500)
qcsrc/common/notifications.qh

index 03436c4dd849a8fab86f68d0c547b65f7c7fbff4..34f34d5fda8f77ebcca28f02473ddf641799414e 100644 (file)
@@ -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;