]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
changed demo playback csqc mismatch error to a warning
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 11 Dec 2006 10:06:01 +0000 (10:06 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 11 Dec 2006 10:06:01 +0000 (10:06 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6644 d7cf8633-e32d-0410-b094-e92efae38249

csprogs.c

index 8aa55b240f674f6387a22e31216caf3dab61adec..1243120623aae26ab08433bc38a288a1c311b20b 100644 (file)
--- 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