From: havoc Date: Mon, 11 Dec 2006 10:06:01 +0000 (+0000) Subject: changed demo playback csqc mismatch error to a warning X-Git-Tag: xonotic-v0.1.0preview~3756 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=46b1bbf5438a97afc1b0e5423c56fe7a77479d51;ds=sidebyside 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 --- 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