From 46b1bbf5438a97afc1b0e5423c56fe7a77479d51 Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 11 Dec 2006 10:06:01 +0000 Subject: [PATCH] changed demo playback csqc mismatch error to a warning git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6644 d7cf8633-e32d-0410-b094-e92efae38249 --- csprogs.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/csprogs.c b/csprogs.c index 8aa55b24..12431206 100644 --- a/csprogs.c +++ b/csprogs.c @@ -512,11 +512,16 @@ void CL_VM_Init (void) if (csprogsdatacrc != requiredcrc) { if (cls.demoplayback) - Con_Printf("^1Your %s is not the same version as the demo was recorded with (CRC is %i but should be %i)\n", csqc_progname.string, csprogsdatacrc, requiredcrc); + { + Con_Printf("^1Warning: Your %s is not the same version as the demo was recorded with (CRC is %i but should be %i)\n", csqc_progname.string, csprogsdatacrc, requiredcrc); + return; + } else + { Con_Printf("^1Your %s is not the same version as the server (CRC is %i but should be %i)\n", csqc_progname.string, csprogsdatacrc, requiredcrc); - CL_Disconnect(); - return; + CL_Disconnect(); + return; + } } } else -- 2.39.2