diff options
Diffstat (limited to 'src/game/bg_public.h')
-rw-r--r-- | src/game/bg_public.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h index bbf064e..f96fd66 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -833,7 +833,7 @@ typedef enum // means of death typedef enum { -#define MOD(x) x +#define MOD(a,b) a #include "bg_mod.h" #undef MOD } meansOfDeath_t; @@ -1243,3 +1243,4 @@ typedef struct const char *name; } dummyCmd_t; int cmdcmp( const void *a, const void *b ); + |