Fix menu start button closing the chat

This commit is contained in:
James R 2022-10-23 13:20:13 -07:00
parent 78c8e27542
commit ae02579b09

View file

@ -885,17 +885,11 @@ boolean M_Responder(event_t *ev)
if (CON_Ready() == false && G_PlayerInputDown(0, gc_start, splitscreen + 1) == true) if (CON_Ready() == false && G_PlayerInputDown(0, gc_start, splitscreen + 1) == true)
{ {
if (chat_on) if (!chat_on)
{
HU_clearChatChars();
chat_on = false;
}
else
{ {
M_StartControlPanel(); M_StartControlPanel();
return true;
} }
return true;
} }
noFurtherInput = false; // turns out we didn't care noFurtherInput = false; // turns out we didn't care