(svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
This commit is contained in:
@@ -1242,11 +1242,9 @@ void NetworkUDPGameLoop(void)
|
||||
if (_udp_master_socket != INVALID_SOCKET) {
|
||||
NetworkUDPReceive(_udp_master_socket);
|
||||
}
|
||||
}
|
||||
else if (_udp_client_socket != INVALID_SOCKET) {
|
||||
} else if (_udp_client_socket != INVALID_SOCKET) {
|
||||
NetworkUDPReceive(_udp_client_socket);
|
||||
if (_network_udp_broadcast > 0)
|
||||
_network_udp_broadcast--;
|
||||
if (_network_udp_broadcast > 0) _network_udp_broadcast--;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user