aboutsummaryrefslogtreecommitdiffstats
path: root/code/server
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-08-13 17:09:05 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-08-13 17:09:05 +0000
commitcc33a20368bd39f76401f849f4edab15a4ae45a6 (patch)
tree41aad63e12d7ff529434217f02427770f798fd79 /code/server
parent36ab05bf4cd9f33289411e212de353f75a5e07c5 (diff)
downloadioquake3-aero-cc33a20368bd39f76401f849f4edab15a4ae45a6.tar.gz
ioquake3-aero-cc33a20368bd39f76401f849f4edab15a4ae45a6.zip
* qvm files no longer installed by "make copyfiles"
* Loopback clients only get snapshots at the server frame rate now (Anonymous <nkylqinhvgcbyl@mailinator.com>) * JPEG chroma subsampling disabled if the quality value is >= 85 (Anonymous <nkylqinhvgcbyl@mailinator.com>) * cl_lanForcePackets. When set to 0 (default is 1) the cl_maxpackets setting will be ignored if on a LAN. (Anonymous <nkylqinhvgcbyl@mailinator.com>) git-svn-id: svn://svn.icculus.org/quake3/trunk@838 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/server')
-rw-r--r--code/server/sv_snapshot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/server/sv_snapshot.c b/code/server/sv_snapshot.c
index 2786b84..30001a1 100644
--- a/code/server/sv_snapshot.c
+++ b/code/server/sv_snapshot.c
@@ -583,11 +583,11 @@ void SV_SendMessageToClient( msg_t *msg, client_t *client ) {
// set nextSnapshotTime based on rate and requested number of updates
- // local clients get snapshots every frame
+ // local clients get snapshots every server frame
// TTimo - https://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=491
// added sv_lanForceRate check
if ( client->netchan.remoteAddress.type == NA_LOOPBACK || (sv_lanForceRate->integer && Sys_IsLANAddress (client->netchan.remoteAddress)) ) {
- client->nextSnapshotTime = svs.time - 1;
+ client->nextSnapshotTime = svs.time + (1000/sv_fps->integer);
return;
}