]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix compile
authorSamual Lenks <samual@xonotic.org>
Wed, 26 Sep 2012 20:17:27 +0000 (16:17 -0400)
committerSamual Lenks <samual@xonotic.org>
Wed, 26 Sep 2012 20:17:27 +0000 (16:17 -0400)
qcsrc/common/notifications.qc

index 930b52485633049cdae5610764305bc32dfb6f44..4bf7b435b08d6626250324598de05336d572add7 100644 (file)
@@ -26,7 +26,7 @@
 #define VAR_TO_TEXT(var) #var
 
 #define CHECK_FIELD_AND_COUNT(field,count) if(!field) { field = (NOTIF_FIRST + count); ++count; }
-#define CHECK_MAX_NOTIFICATIONS(name,count) if(count == NOTIF_MAX) { error(strcat("Maximum notifications hit: ", VAR_TO_TEXT(name), ": ", ftos(count), ".\n"); }
+#define CHECK_MAX_NOTIFICATIONS(name,count) if(count == NOTIF_MAX) { error(strcat("Maximum notifications hit: ", VAR_TO_TEXT(name), ": ", ftos(count), ".\n")); }
 
 
 // ====================================