From: havoc Date: Sat, 18 Jan 2020 05:26:11 +0000 (+0000) Subject: Forgot to call TaskQueue_Init during startup, woops. X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=d3709f2ff22b9c0c3a1b6a39c28beba33622ca0e Forgot to call TaskQueue_Init during startup, woops. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12497 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host.c b/host.c index 2e9515a5..c385b6d3 100644 --- a/host.c +++ b/host.c @@ -1273,6 +1273,7 @@ static void Host_Init (void) Host_ServerOptions(); Thread_Init(); + TaskQueue_Init(); if (cls.state == ca_dedicated) Cmd_AddCommand ("disconnect", CL_Disconnect_f, "disconnect from server (or disconnect all clients if running a server)");