Fix erroneous display of MESSAGES: ON when it should be OFF.

git-svn-id: https://svn.eduke32.com/eduke32@5871 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-09-16 21:58:46 +00:00
parent 295c654740
commit 03a8877f55

View file

@ -4860,10 +4860,9 @@ FAKE_F3:
{
KB_ClearKeyDown(sc_F8);
ud.fta_on = !ud.fta_on;
int const fta = ud.fta_on;
int const fta = !ud.fta_on;
ud.fta_on = 1;
P_DoQuote(ud.fta_on ? QUOTE_MESSAGES_ON : QUOTE_MESSAGES_OFF, g_player[myconnectindex].ps);
P_DoQuote(fta ? QUOTE_MESSAGES_ON : QUOTE_MESSAGES_OFF, g_player[myconnectindex].ps);
ud.fta_on = fta;
}