diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-09-16 19:57:58 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-09-16 19:57:58 +0000 |
commit | e68f49dd90d1650880d7124ec0a909b49805a83c (patch) | |
tree | fb50637055786c87caf262f1d58b1fb8ebe6025c /source/q_shared.c | |
parent | a9eefaa6dd9de85d28626fd2f141a38a3148caed (diff) |
MVD client now makes sure mapfile exists before doing CM_LoadMap.
Fixed MVD client not being killed in case of Com_Error resulting in a crash.
Made server HTML output pass formal validation.
Fixed COM_AppendExtension.
Pack usercmd button mask into 3 bits instead of 8.
Bumped minor Q2PRO protocol version.
Diffstat (limited to 'source/q_shared.c')
-rw-r--r-- | source/q_shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/q_shared.c b/source/q_shared.c index 8e12ecf..3077913 100644 --- a/source/q_shared.c +++ b/source/q_shared.c @@ -835,7 +835,7 @@ void COM_DefaultExtension( char *path, const char *extension, int pathSize ) { } void COM_AppendExtension( char *path, const char *extension, int pathSize ) { - if( !Q_stricmp( COM_FileExtension( path ), extension ) ) { + if( Q_stricmp( COM_FileExtension( path ), extension ) ) { Q_strcat( path, pathSize, extension ); } } |