mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
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:
parent
295c654740
commit
03a8877f55
1 changed files with 2 additions and 3 deletions
|
@ -4860,10 +4860,9 @@ FAKE_F3:
|
||||||
{
|
{
|
||||||
KB_ClearKeyDown(sc_F8);
|
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;
|
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;
|
ud.fta_on = fta;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue