mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
qtv wants no pvs culling
This commit is contained in:
parent
ed0b29a0a0
commit
4f9c31595d
1 changed files with 4 additions and 3 deletions
|
@ -351,10 +351,11 @@ SVR_AddUser (void (*write)(void *, sizebuf_t *, int), int (*frame)(void *),
|
|||
r->next = sv.recorders;
|
||||
sv.recorders = r;
|
||||
|
||||
|
||||
if (demo)
|
||||
r->delta.pvs = dt_pvs_none;
|
||||
if (demo) {
|
||||
r->delta.type = dt_tp_demo;
|
||||
r->delta.pvs = dt_pvs_fat;
|
||||
}
|
||||
for (i = 0; i < UPDATE_BACKUP; i++) {
|
||||
r->delta.frames[i].entities.entities = r->entities[i];
|
||||
r->delta.frames[i].players.players = r->players[i];
|
||||
|
|
Loading…
Reference in a new issue