From e1f4df27c31091856032dfcea64494025feddd87 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 4 May 2022 23:52:26 +0900 Subject: [PATCH] [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. --- qw/source/cl_chat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/cl_chat.c b/qw/source/cl_chat.c index 5e170c3c9..81e9c8b4b 100644 --- a/qw/source/cl_chat.c +++ b/qw/source/cl_chat.c @@ -255,7 +255,7 @@ static void cl_chat_on_focus_change (int game) { //FIXME afk mode - CL_ChatInfo (!!game); + CL_ChatInfo (!game); }