From bc768f33bc165bf7e5fd9d072dd6b57405501887 Mon Sep 17 00:00:00 2001 From: Shpoike Date: Sun, 13 Sep 2020 16:14:59 +0100 Subject: [PATCH] cl_warncmd wasn't getting re-enabled properly. --- Quake/host.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Quake/host.c b/Quake/host.c index 73152794..b2c3e41e 100644 --- a/Quake/host.c +++ b/Quake/host.c @@ -1096,6 +1096,7 @@ void Host_Init (void) { Cbuf_AddText ("cl_warncmd 0\n"); Cbuf_InsertText ("exec quake.rc\n"); + Cbuf_AddText ("cl_warncmd 1\n"); // johnfitz -- in case the vid mode was locked during vid_init, we can unlock it now. // note: two leading newlines because the command buffer swallows one of them. Cbuf_AddText ("\n\nvid_unlock\n");