From 82a12cb39135ea38c48aa566759dfefe7c5b10e2 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Tue, 25 Sep 2012 16:18:02 -0400 Subject: [PATCH] Fix these macros --- qcsrc/common/notifications.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index f445ebcde..c1fa98e82 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -10,8 +10,8 @@ #define MSG_WEAPON 4 // weapon messages (like "You got the Nex", sent to weapon notify panel) // collapse multiple arguments into one argument -#define CLPS4(arg1,arg2,arg3,arg4) arg1, arg2, arg3, arg4 -#define CLPS3(arg1,arg2,arg3) arg1, arg2, arg3 +#define CLPS4(s1,s2,s3,s4) s1, s2, s3, s4 +#define CLPS3(s1,s2,s3) s1, s2, s3 #define CLPS2(s1,s2) s1, s2 // accumulate functions for declarations -- 2.39.2