Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-03 | Rename FS_CheckFilenameIsNotImmutable to ..IsMutable | Harley Laue | |
2013-05-03 | Rename FS_CheckFilenameIsNotExecutable to ..NotImmutable | Zack Middleton | |
2013-05-03 | Don't allow modifying qvms or pk3s | Zack Middleton | |
Exception for allowing pk3s to be downloaded. | |||
2013-05-03 | Fix referencing pk3 with only qagame QVM | Zack Middleton | |
2013-05-03 | Add fallback for __func__ (ioq3 isn't compiled as c99 by default) | Zack Middleton | |
Using Debian gcc version 4.7.2 and clang 3.0-6.1 anyway. | |||
2013-05-03 | Fix setting CVAR_VM_CREATED flag on user created cvars | Zack Middleton | |
Fix setting CVAR_VM_CREATED flag on cvars created using set[asu] commands (including archived cvars from cfg) and trap_Cvar_Set. trap_Cvar_Register called Cvar_Get which cleared CVAR_USER_CREATED flag, but CVAR_VM_CREATED wasn't set because the cvar already existed. | |||
2013-03-27 | Fix some warnings caused by lack of noreturn | Tim Angus | |
2013-03-27 | Fix some of the things clang --analyze flagged | Tim Angus | |
2013-03-22 | Ditch 'historical compatibility' and use 'logic' instead | Tim Angus | |
2013-03-19 | Fix NET_IPSocket and NET_IP6Socket return type | Zack Middleton | |
It was causing a warning on Windows x64. | |||
2013-03-19 | Use PATH_SEP for a debug message in FS_FOpenFileReadDir | Ensiform | |
2013-03-19 | Remove RAVENMD4 #define | Tim Angus | |
2013-03-19 | Fix some clang warnings | Tim Angus | |
2013-03-19 | Remove old x86_64 JIT compiler | Tim Angus | |
2013-03-19 | Remove Sys_SnapVector | Zack Middleton | |
2013-02-16 | Update copyright notices | Tim Angus | |
2013-02-16 | 5717 - Gamecode can open file "" for reading | Zack Middleton | |
2013-02-16 | Don't add pk3dirs if connecting to a pure server | Zack Middleton | |
Only .cfg etc would be read from pk3dirs, but they should be treated like pk3s that are not on the pure list. | |||
2013-02-16 | Change pk3dir README / comments to fit in better | Zack Middleton | |
2013-02-16 | 5289 - Support for .pk3dir | Andrew Browne | |
2013-02-16 | Unify/cleanup max snapshot entities on client and server | Zack Middleton | |
2013-02-16 | Remove MSG_WriteDeltaUsercmd and MSG_ReadDeltaUsercmd | Zack Middleton | |
2013-02-16 | Remove some unused defines from msg.c | Zack Middleton | |
2013-02-16 | Fix MSG_ReadDeltaKey setting bit 1<<bits often | Zack Middleton | |
MSG_ReadDeltaKey would often set 1<<bits, it should never be set. It exceeds the size of what was being read. Worked okay for weapons/forward/right/up as they stored as chars (value would wrap around to correct value, lucky). Angles had the wrong value, not sure if it was causing issues. | |||
2013-01-13 | Fix screwed up whitespace in files.c | Tim Angus | |
Apologies to anyone merging this :( | |||
2013-01-13 | Fix FS_FOpenFileRead corner case | Tim Angus | |
FS_FOpenFileRead is a fairly mental function that changes its return behaviour depending on whether or not file is NULL or not. It turns out in the case where file is NULL, we were returning the wrong value when the file didn't exist. | |||
2013-01-13 | Update src/qcommon/q_shared.h | M. Kristall | |
ioq3 merge prevented servers from showing up on the master The Tremulous master server expects HEARTBEAT_FOR_MASTER to be the same as GAMENAME_FOR_MASTER, but dpmaster wants DarkPlaces | |||
2013-01-12 | Fix a bunch of warnings | Tim Angus | |
2013-01-12 | It seems rend2 needs more hunk | Tim Angus | |
2013-01-12 | Remove old FIXME, pmove_framecount isn't networked | Zack Middleton | |
2013-01-12 | Increase various arbitrary limits - Bug #5463 | Zachary Slater | |
2013-01-12 | Fix dedicated server crashing when using MSG_ReadDelta*, though it only ↵ | Zack Middleton | |
happens if someone modifies the engine. (#5449) | |||
2013-01-12 | Fix passing arg9 (qvm only), arg10, and arg11 to vmMain for native libs and ↵ | Zack Middleton | |
non-i386 compiled or interpated qvms. (Currently they aren't use in vmMain in game, cgame, or ui.) Fix passing args[11] to args[15] from vm to engine on ppc64 and sparc64. Some of the args are used by game bot prediction syscalls. May have been causing bugs. Note: This was fixed for x86_64 in r2163. | |||
2013-01-12 | Fix function prototype for Info_RemoveKey_Big. Pointed out by Ensiform. | Zack Middleton | |
2013-01-12 | Remove references to non-existent functions CM_MarkFragments and CM_LerpTag. | Zack Middleton | |
2013-01-12 | Fix some "> MAX_*" to be ">= MAX_*". | Zack Middleton | |
2013-01-12 | Fix restoring fs_game when default.cfg is missing. | Zack Middleton | |
2013-01-12 | Oops, still need this | Thilo Schulz | |
2013-01-12 | Move argument passing from VM to engine to global variables which allows to ↵ | Thilo Schulz | |
get rid of lots of OS specific stuff and also fixes errors that happens when compilers add lots of boilerplate to the DoSyscall() function | |||
2013-01-12 | We should not try to broadcast via the IPv4 socket if that socket is closed. | Zack Middleton | |
Previously, error messages were generated when querying local servers while IPv4 was disabled. Patch from /dev/humancontroller. | |||
2013-01-12 | Revert pk3dir patch because some users report the code gets stuck in an ↵ | Thilo Schulz | |
infinite loop in the new code | |||
2013-01-12 | Support for .pk3dir (#5298) - Patch by Andrew (dersaidin@gmail.com) | Thilo Schulz | |
2013-01-12 | Fixed fatal error ("OP_BLOCK_COPY out of range!") when using qvms on Mac OS ↵ | Zack Middleton | |
X powerpc (see r2031 and r2034). | |||
2013-01-12 | - Have NET_Sleep work with Windows' INVALID_SOCKET again... - Use ↵ | Zack Middleton | |
SOCKET_ERROR in NET_Sleep. | |||
2013-01-12 | #5672 - Fixed incorrect type usage in NET_Sleep(), patch from Özkan Sezer. | Zack Middleton | |
2013-01-12 | when interacting with QVMs, Clang/LLVM requires the standard use of the ↵ | Zack Middleton | |
va_*() macros instead of (fast) call hacks From /dev/humancontroller. | |||
2013-01-12 | fix a WRONG size argument to a memset() call found by Clang/LLVM | Zack Middleton | |
From /dev/humancontroller. | |||
2013-01-12 | REFACTOR [reletive -> relative] | Zack Middleton | |
From /dev/humancontroller. | |||
2013-01-12 | REFACTOR [a vs an] | Zack Middleton | |
From /dev/humancontroller. | |||
2013-01-12 | never set groundEntityNum to -1, use ENTITYNUM_NONE instead | Zack Middleton | |
From /dev/humancontroller. |