From 63bed732f27d97663fd38d9571aa33b38dcf168f Mon Sep 17 00:00:00 2001 From: James R Date: Thu, 19 Jan 2023 21:26:12 -0800 Subject: [PATCH] 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. --- src/g_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index 6cea62b1a..4acd29afe 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -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;