Merge branch 'dlconfirmfix' into 'master'

DL Confirm Fix

See merge request KartKrew/Kart!547
This commit is contained in:
James R 2022-02-17 05:05:39 +00:00
commit 64abc232bc
2 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -282,7 +282,7 @@ boolean CL_CheckDownloadable(void)
}
// Downloading locally disabled
#if 0
#ifndef TESTERS
if (!dlstatus && M_CheckParm("-nodownload"))
dlstatus = 3;