From 4f9c31595d828386a3546073e204fb1c00f61056 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 8 May 2005 11:45:35 +0000 Subject: [PATCH] qtv wants no pvs culling --- qw/source/sv_recorder.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/qw/source/sv_recorder.c b/qw/source/sv_recorder.c index 41f593b34..1e73b9d4a 100644 --- a/qw/source/sv_recorder.c +++ b/qw/source/sv_recorder.c @@ -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; + 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];