From 0424e9b7983d8694129cc8d7975377f90b5bc4b8 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 17 Aug 2024 15:22:09 +0900 Subject: [PATCH] [gamecode] Fix a silly typo in a macro It doesn't really affect anything since it's just the parameter name in an empty function-type macro, but "event" instead of "type" isn't particularly conducive to self-documenting code. --- include/QF/progs/pr_type_names.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/QF/progs/pr_type_names.h b/include/QF/progs/pr_type_names.h index 3e0daf10a..8e885724e 100644 --- a/include/QF/progs/pr_type_names.h +++ b/include/QF/progs/pr_type_names.h @@ -27,7 +27,7 @@ */ #ifndef EV_TYPE -#define EV_TYPE(event) +#define EV_TYPE(type) #endif EV_TYPE(void)