From: cloudwalk Date: Fri, 17 Jul 2020 23:38:51 +0000 (+0000) Subject: menu: Don't abort the frame if the menu crashes during init, so video can start X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=dd6452e084cc329cc35b6b9a7379f67c3eca141d;p=xonotic%2Fdarkplaces.git menu: Don't abort the frame if the menu crashes during init, so video can start git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12836 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/menu.c b/menu.c index 028ea6a2..6308f480 100644 --- a/menu.c +++ b/menu.c @@ -5233,9 +5233,11 @@ void MVM_error_cmd(const char *format, ...) MR_SetRouting (true); // reset the active scene, too (to be on the safe side ;)) - R_SelectScene( RST_CLIENT ); + R_SelectScene( RST_CLIENT ); - Host_AbortCurrentFrame(); + // Let video start at least + if(host.state != host_init) + Host_AbortCurrentFrame(); } static void MVM_begin_increase_edicts(prvm_prog_t *prog)