diff options
author | /dev/humancontroller <devhc@example.com> | 2014-07-14 00:50:56 +0200 |
---|---|---|
committer | /dev/humancontroller <devhc@example.com> | 2017-03-09 13:51:18 +0100 |
commit | 7f4c1d68907d33b9e34ae22079e72b0a21f3fb1e (patch) | |
tree | d449a0fe84a124b5d64163a8c738fd7085f69ac6 /src/client | |
parent | b392b0d97f3ea048478059873ed6dec8afd9634b (diff) |
implement part 2 of the multi-protocol functionality: pk3 control
this contains a simple method to control the serving of alternate pk3 files to clients using the alternate-2 protocol (69); there's also a fixup for the VoIP part
the new fs_pk3PrefixPairs cvar has the format "P1&A1|P2&A2|...", where, for each i, Pi and Ai are corresponding primary and alternate pk3 filename prefixes, one of which one may be empty (eg. "P1&|&A2|...") to denote no correspondence
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/cl_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/cl_main.c b/src/client/cl_main.c index 91ce5d81..7d266e67 100644 --- a/src/client/cl_main.c +++ b/src/client/cl_main.c @@ -2035,7 +2035,7 @@ CL_PK3List_f ================== */ void CL_OpenedPK3List_f( void ) { - Com_Printf("Opened PK3 Names: %s\n", FS_LoadedPakNames()); + Com_Printf("Opened PK3 Names: %s\n", FS_LoadedPakNames( qfalse )); } /* @@ -2044,7 +2044,7 @@ CL_PureList_f ================== */ void CL_ReferencedPK3List_f( void ) { - Com_Printf("Referenced PK3 Names: %s\n", FS_ReferencedPakNames()); + Com_Printf("Referenced PK3 Names: %s\n", FS_ReferencedPakNames( qfalse )); } /* |