mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-22 03:51:12 +00:00
fix an incorrect bit op
This commit is contained in:
parent
458375346c
commit
09fa223030
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ void() ClientDisconnected =
|
|||
if(self.b_clientno > 16)
|
||||
active_clients2 = active_clients2 - (active_clients2 & ClientBitFlag(self.b_clientno - 16));
|
||||
else
|
||||
active_clients1 = active_clients1 | (active_clients1 & ClientBitFlag(self.b_clientno));
|
||||
active_clients1 = active_clients1 - (active_clients1 & ClientBitFlag(self.b_clientno));
|
||||
};
|
||||
/*
|
||||
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
||||
|
|
Loading…
Reference in a new issue