diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-11-23 18:01:39 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-11-23 18:01:39 +0000 |
commit | 3f0f134217531bd2f7d099f12e4ea77d3565cf91 (patch) | |
tree | 274f3849b8bbaa26bc2018db75bee9795bb3e3ce /source/cmd.c | |
parent | 2479c40e2c820cb3e9eabe9e116148187f84d11a (diff) |
Added `com_uptime' macro.
Version string no longer overdraws long command line in console.
Cap `gl_celshading' value to 5 to prevent possible cheating.
Diffstat (limited to 'source/cmd.c')
-rw-r--r-- | source/cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cmd.c b/source/cmd.c index b8308e6..b82c02d 100644 --- a/source/cmd.c +++ b/source/cmd.c @@ -398,7 +398,7 @@ static cmd_macro_t *Cmd_FindMacro( const char *name ) { uint32 hash; hash = Com_HashString( name, MACRO_HASH_SIZE ); - for( macro = cmd_macroHash[hash]; macro ; macro = macro->hashNext ) { + for( macro = cmd_macroHash[hash]; macro; macro = macro->hashNext ) { if( !strcmp( macro->name, name ) ) { return macro; } |