| 190 | } |
| 191 | |
| 192 | void multi_handle_turn_upper_bit(int pnum) |
| 193 | { |
| 194 | int i; |
| 195 | |
| 196 | for (i = 0; i < MAX_PLRS; i++) { |
| 197 | if (player_state[i] & 0x10000 && i != pnum) |
| 198 | break; |
| 199 | } |
| 200 | |
| 201 | if (myplr == i) { |
| 202 | sgbSendDeltaTbl[pnum] = TRUE; |
| 203 | } else if (myplr == pnum) { |
| 204 | gbDeltaSender = i; |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | void multi_player_left(int pnum, int reason) |
| 209 | { |