From 676351a4173915edc38016f76b93ab0bc01e3679 Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Mon, 26 Feb 2024 08:27:35 +1000 Subject: [PATCH] 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 --- prvm_exec.c | 2 -- 1 file changed, 2 deletions(-) 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) -- 2.39.2