aboutsummaryrefslogtreecommitdiffstats
path: root/code
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-01-16 04:00:30 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-01-16 04:00:30 +0000
commit875084ce5b01e2f923755165a3d8fe912937220b (patch)
tree5d5002a38f6a9f084df37f4e33ea653b667b5b7d /code
parentcd5737bf13ec4b6a24a985e0deb7cd355fb9b60b (diff)
downloadioquake3-aero-875084ce5b01e2f923755165a3d8fe912937220b.tar.gz
ioquake3-aero-875084ce5b01e2f923755165a3d8fe912937220b.zip
* Don't try to auto record a demo while playing a demo
git-svn-id: svn://svn.icculus.org/quake3/trunk@495 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code')
-rw-r--r--code/client/cl_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/client/cl_main.c b/code/client/cl_main.c
index 8f0168a..6842281 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;