diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-03-30 22:50:12 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-03-30 22:50:12 +0000 |
commit | 25622e67c36582bfc7b10756ea5808a247b69a8a (patch) | |
tree | b5e86156ecc5cfa0f9dcb3b746074b05388063ad /source/net_common.c | |
parent | 599a6aba5619bea100e45b31483148d232229f91 (diff) |
Added UF_MUTE_MISC flag and corresponding MVD menu entry.
Avoid spamming MVD channels with broadcasts when client is dropped.
Allow referencing MVD channels by name along with numeric ID.
When spectator enters a MVD channel for the first time,
start following the most followed player by default.
Changed default GL driver to `libGL.so.1' on Unix.
Diffstat (limited to 'source/net_common.c')
-rw-r--r-- | source/net_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/net_common.c b/source/net_common.c index b2fbe7b..1474af2 100644 --- a/source/net_common.c +++ b/source/net_common.c @@ -1197,7 +1197,7 @@ qboolean NET_GetAddress( netsrc_t sock, netadr_t *adr ) { length = sizeof( address ); if( getsockname( udp_sockets[sock], ( struct sockaddr * ) - &address, &length ) == -1 ) + &address, &length ) == -1 ) { return qfalse; } |