[qw] Fix inverted chat mode

This has been bugging me for a while whenever I tested qw. Just a silly
logic error. The whole system needs work, though.
This commit is contained in:
Bill Currie 2022-05-04 23:52:26 +09:00
parent 618453629f
commit e1f4df27c3
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ static void
cl_chat_on_focus_change (int game)
{
//FIXME afk mode
CL_ChatInfo (!!game);
CL_ChatInfo (!game);
}