From fc8fcd7af5f8d6c7f58f0048b67cc304db361615 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Mon, 16 Jan 2006 04:00:30 +0000 Subject: [PATCH] * Don't try to auto record a demo while playing a demo --- code/client/cl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/cl_main.c b/code/client/cl_main.c index 8f0168a8..68422814 100644 --- a/code/client/cl_main.c +++ b/code/client/cl_main.c @@ -2040,7 +2040,7 @@ void CL_Frame ( int msec ) { } if( cl_autoRecordDemo->integer ) { - if( cls.state == CA_ACTIVE && !clc.demorecording ) { + if( cls.state == CA_ACTIVE && !clc.demorecording && !clc.demoplaying ) { // If not recording a demo, and we should be, start one qtime_t now; char *nowString;