Merge branch 'fix-downloadsnakeconcent' into 'next'

[Snake Controller Fix] fix NONET builds

See merge request STJr/SRB2!1888
This commit is contained in:
sphere 2022-11-29 12:07:57 +00:00
commit 153def463f

2
src/d_clisrv.c Normal file → Executable file
View file

@ -2440,7 +2440,9 @@ static boolean CL_ServerConnectionTicker(const char *tmpsave, tic_t *oldtic, tic
// my hand has been forced and I am dearly sorry for this awful hack :vomit:
for (; eventtail != eventhead; eventtail = (eventtail+1) & (MAXEVENTS-1))
{
#ifndef NONET
if (!Snake_Joy_Grabber(&events[eventtail]))
#endif
G_MapEventsToControls(&events[eventtail]);
}
}