mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[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:
parent
618453629f
commit
e1f4df27c3
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ static void
|
||||||
cl_chat_on_focus_change (int game)
|
cl_chat_on_focus_change (int game)
|
||||||
{
|
{
|
||||||
//FIXME afk mode
|
//FIXME afk mode
|
||||||
CL_ChatInfo (!!game);
|
CL_ChatInfo (!game);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue