mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
* Fix to a stupid bug I introduced whilst trying to be clever
This commit is contained in:
parent
e74947be2c
commit
b4898caac4
1 changed files with 3 additions and 2 deletions
|
@ -40,9 +40,10 @@ int demo_protocols[] =
|
|||
#define MIN_COMHUNKMEGS 56
|
||||
#define DEF_COMHUNKMEGS 64
|
||||
#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];
|
||||
|
|
Loading…
Reference in a new issue