mostly miscilaneous changes (some old stuff that I don't remember), lightsampling changes, qtv changes, avi sound changes
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2379 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
4c32449d26
commit
42c43d960f
60 changed files with 2066 additions and 643 deletions
|
@ -168,17 +168,17 @@ qboolean Master_CompareString(char *a, char *b, slist_test_t rule)
|
|||
case SLIST_TEST_NOTCONTAIN:
|
||||
return !strstr(a, b);
|
||||
case SLIST_TEST_LESSEQUAL:
|
||||
return strcmp(a, b)<=0;
|
||||
return stricmp(a, b)<=0;
|
||||
case SLIST_TEST_LESS:
|
||||
return strcmp(a, b)<0;
|
||||
return stricmp(a, b)<0;
|
||||
case SLIST_TEST_EQUAL:
|
||||
return strcmp(a, b)==0;
|
||||
return stricmp(a, b)==0;
|
||||
case SLIST_TEST_GREATER:
|
||||
return strcmp(a, b)>0;
|
||||
return stricmp(a, b)>0;
|
||||
case SLIST_TEST_GREATEREQUAL:
|
||||
return strcmp(a, b)>=0;
|
||||
return stricmp(a, b)>=0;
|
||||
case SLIST_TEST_NOTEQUAL:
|
||||
return strcmp(a, b)!=0;
|
||||
return stricmp(a, b)!=0;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
@ -1545,7 +1545,9 @@ int CL_ReadServerInfo(char *msg, int servertype, qboolean favorite)
|
|||
info->fl = atoi(Info_ValueForKey(msg, "fraglimit"));
|
||||
|
||||
if (*Info_ValueForKey(msg, "*qtv"))
|
||||
info->special |= SS_QTV;
|
||||
info->special |= SS_PROXY|SS_FTESERVER;
|
||||
if (!strcmp(Info_ValueForKey(msg, "*progs"), "666") && !strcmp(Info_ValueForKey(msg, "*version"), "2.91"))
|
||||
info->special |= SS_PROXY; //qizmo
|
||||
|
||||
if (servertype == MT_SINGLEQ3 || servertype == MT_SINGLEQ2 || servertype == MT_SINGLEDP)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue