From 7f4c1d68907d33b9e34ae22079e72b0a21f3fb1e Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Mon, 14 Jul 2014 00:50:56 +0200 Subject: 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 --- src/client/cl_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client') 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 )); } /* -- cgit