From: bones_was_here Date: Sun, 25 Feb 2024 22:27:35 +0000 (+1000) Subject: PRVM: don't break csqc when menuqc has a problem X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=676351a4173915edc38016f76b93ab0bc01e3679;p=xonotic%2Fdarkplaces.git PRVM: don't break csqc when menuqc has a problem Fixes a regression in 3d84db99ed9d8234809d237512f44cfa6d7ce1a0 caused by moving this line such that it executes even for MVM errors. We don't need it because it's done by Host_Error->CL_DisconnectEx->CL_VM_ShutDown Signed-off-by: bones_was_here --- diff --git a/prvm_exec.c b/prvm_exec.c index 4c50ff6e..f24838e5 100644 --- a/prvm_exec.c +++ b/prvm_exec.c @@ -720,8 +720,6 @@ void PRVM_Crash(prvm_prog_t *prog) char vabuf[1024]; int outfd = sys.outfd; - cl.csqc_loaded = false; - if (prog == NULL) return; if (!prog->loaded)