| 382 | } |
| 383 | |
| 384 | void multi_check_drop_player() |
| 385 | { |
| 386 | int i; |
| 387 | |
| 388 | for (i = 0; i < MAX_PLRS; i++) { |
| 389 | if (!(player_state[i] & 0x40000) && player_state[i] & 0x10000) { |
| 390 | SNetDropPlayer(i, 0x40000006); |
| 391 | } |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | void multi_process_network_packets() |
| 396 | { |
no test coverage detected