From 0f4feb0161e8e7fd1a2b7917056a92a43ba514d1 Mon Sep 17 00:00:00 2001 From: James R Date: Fri, 28 Jan 2022 04:43:18 -0800 Subject: [PATCH 1/2] Fix in game downloader confirmation --- src/d_clisrv.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index 855056cf1..31ecc92ca 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -1926,8 +1926,10 @@ static boolean CL_ServerConnectionTicker(const char *tmpsave, tic_t *oldtic, tic if (*oldtic != I_GetTime()) { I_OsPolling(); +#if 0 for (; eventtail != eventhead; eventtail = (eventtail+1) & (MAXEVENTS-1)) G_MapEventsToControls(&events[eventtail]); +#endif if (cl_mode == CL_CONFIRMCONNECT) D_ProcessEvents(); //needed for menu system to receive inputs From c8517007c6f3f49688cbe5332a1bfe6965a5d4bd Mon Sep 17 00:00:00 2001 From: toaster Date: Thu, 3 Feb 2022 22:03:04 +0000 Subject: [PATCH 2/2] Only disable downloads in TESTER builds and -nodownload, not always. --- src/d_netfil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_netfil.c b/src/d_netfil.c index 2eaf3e7d5..fcfba62d9 100644 --- a/src/d_netfil.c +++ b/src/d_netfil.c @@ -282,7 +282,7 @@ boolean CL_CheckDownloadable(void) } // Downloading locally disabled -#if 0 +#ifndef TESTERS if (!dlstatus && M_CheckParm("-nodownload")) dlstatus = 3;