G_Responder: remove check to finalecount before opening menu from title screen

This is handled by M_StartControlPanel anyway and the
condition did not match anymore.
This commit is contained in:
James R 2023-01-19 21:26:12 -08:00
parent e8bc7035f5
commit 63bed732f2

View file

@ -1513,7 +1513,7 @@ boolean G_Responder(event_t *ev)
if (gameaction == ga_nothing && !demo.quitafterplaying &&
((demo.playback && !modeattacking && !demo.title && !multiplayer) || gamestate == GS_TITLESCREEN))
{
if (ev->type == ev_keydown && ev->data1 != 301 && !(gamestate == GS_TITLESCREEN && finalecount < TICRATE))
if (ev->type == ev_keydown)
{
M_StartControlPanel();
return true;