ioq3/code/qcommon
Thilo Schulz 8ab958fab9 Fix pak order when reconnecting to a server.
When /connect to the same server is issued while already connected, an initial call to CL_Disconnect will remove all pak file references
and reset the pak order.
Reordering only occurs through FS_Restart, which in turn is called when checksum feed changes. Because we reconnect to the same server,
checksum feed never changes and pak file order is not restored to server order again. With certain pak file constellations between client/server,
this may result in an inability to load files from paks which are not correctly detected as referenced paks.
2011-08-01 01:14:26 +00:00
..
cm_load.c Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings 2011-07-29 12:27:00 +00:00
cm_local.h * Bug fix to collision optimisation (arQon) 2007-10-06 21:59:17 +00:00
cm_patch.c * Bug fix to collision optimisation (arQon) 2007-10-06 21:59:17 +00:00
cm_patch.h * Added STATUS 2005-10-29 01:53:09 +00:00
cm_polylib.c - Add x86_64 support to vm_x86.c 2011-06-01 15:17:18 +00:00
cm_polylib.h * Added STATUS 2005-10-29 01:53:09 +00:00
cm_public.h * Added STATUS 2005-10-29 01:53:09 +00:00
cm_test.c * Bug fix to collision optimisation (arQon) 2007-10-06 21:59:17 +00:00
cm_trace.c Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings 2011-07-29 12:27:00 +00:00
cmd.c Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings 2011-07-29 12:27:00 +00:00
common.c - Switch master server protocol to dpmaster for better game separation. Based partly on patch by Zack Middleton 2011-07-29 13:46:50 +00:00
cvar.c - Automatically reset fs_game to "" if it was supplied by the user and is equal to com_basegame 2011-06-22 23:00:36 +00:00
files.c Fix pak order when reconnecting to a server. 2011-08-01 01:14:26 +00:00
huffman.c Remove newlines from Com_Error message format strings, patch by DevHC 2011-05-12 14:02:48 +00:00
ioapi.c Just unix2dos, nothing to see here ... 2009-10-19 14:00:16 +00:00
ioapi.h Just unix2dos, nothing to see here ... 2009-10-19 14:00:16 +00:00
md4.c Fixed a crash in md4 routines when using them on files with zero length, reported by Lukasz Saduniowski. 2006-06-01 00:58:19 +00:00
md5.c * (bug 3019) use the operating system's random number generator if possible 2007-02-16 23:50:37 +00:00
msg.c Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings 2011-07-29 12:27:00 +00:00
net_chan.c Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings 2011-07-29 12:27:00 +00:00
net_ip.c Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings 2011-07-29 12:27:00 +00:00
puff.c * PNG support from Joerg Dietrich <dietrich_joerg@t-online.de> 2007-08-23 17:23:15 +00:00
puff.h * PNG support from Joerg Dietrich <dietrich_joerg@t-online.de> 2007-08-23 17:23:15 +00:00
q_math.c Optimise VectorNormalize functions, patch by Matt Turner 2011-05-15 14:55:47 +00:00
q_platform.h Fix alignment issues in message sending/reading that would crash IRIX, thanks to Canavan for supplying a shell where I could fix this (#5077) 2011-07-17 01:41:39 +00:00
q_shared.c Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings 2011-07-29 12:27:00 +00:00
q_shared.h - Switch master server protocol to dpmaster for better game separation. Based partly on patch by Zack Middleton 2011-07-29 13:46:50 +00:00
qcommon.h Change DLL search path order for external libraries that are linked at runtime, like libcurl or libopenal to: 2011-07-29 20:18:37 +00:00
qfiles.h move all image decoders into separate files 2008-02-14 11:13:18 +00:00
surfaceflags.h * Added STATUS 2005-10-29 01:53:09 +00:00
unzip.c First batch of getting replacing malloc() with Z_Malloc 2011-02-09 00:02:42 +00:00
unzip.h fix zlib includes 2009-10-24 14:19:39 +00:00
vm.c Change DLL search path order for external libraries that are linked at runtime, like libcurl or libopenal to: 2011-07-29 20:18:37 +00:00
vm_interpreted.c Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings 2011-07-29 12:27:00 +00:00
vm_local.h Various fixes to vm_interpreted.c: 2011-06-16 01:11:45 +00:00
vm_none.c revert int->long change as it breaks on 64bit. Actually only 2005-09-26 22:23:46 +00:00
vm_powerpc.c remove static VM_BlockCopy from vm_powerpc 2011-06-16 08:09:06 +00:00
vm_powerpc_asm.c Refactoring patch by DevHC 2011-05-11 14:21:27 +00:00
vm_powerpc_asm.h new PowerPC vm 2008-11-10 09:46:01 +00:00
vm_sparc.c Add instruction number checks to jumps and calls to SPARC VM, patch by David Miller 2011-05-24 19:46:52 +00:00
vm_sparc.h qcommon: vm: Add sparc JIT compiler. 2009-03-02 17:29:40 +00:00
vm_x86.c Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings 2011-07-29 12:27:00 +00:00
vm_x86_64.c Bug 4812 - GCC __attribute__ annotations for printf, non-returning functions etc., patch by linux@youmustbejoking.demon.co.uk and Zack Middleton 2011-07-18 14:56:57 +00:00
vm_x86_64_assembler.c Bug 4812 - GCC __attribute__ annotations for printf, non-returning functions etc., patch by linux@youmustbejoking.demon.co.uk and Zack Middleton 2011-07-18 14:56:57 +00:00