diff options
Diffstat (limited to 'src/qcommon/common.c')
-rw-r--r-- | src/qcommon/common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qcommon/common.c b/src/qcommon/common.c index 68a750c2..a0a66ae7 100644 --- a/src/qcommon/common.c +++ b/src/qcommon/common.c @@ -41,9 +41,10 @@ int demo_protocols[] = #define MIN_COMHUNKMEGS 128 #define DEF_COMHUNKMEGS 128 #define DEF_COMZONEMEGS 24 +#define XSTRING(x) STRING(x) #define STRING(x) #x -#define DEF_COMHUNKMEGS_S STRING(DEF_COMHUNKMEGS) -#define DEF_COMZONEMEGS_S STRING(DEF_COMZONEMEGS) +#define DEF_COMHUNKMEGS_S XSTRING(DEF_COMHUNKMEGS) +#define DEF_COMZONEMEGS_S XSTRING(DEF_COMZONEMEGS) int com_argc; char *com_argv[MAX_NUM_ARGVS+1]; |