| 1171 | } |
| 1172 | |
| 1173 | void SetAutoSelectPrimaryWpnIdx(int slot, uint16_t idx) { |
| 1174 | if (slot < 0 || slot >= MAX_PRIMARY_WEAPONS) |
| 1175 | Int3(); |
| 1176 | |
| 1177 | PrimaryWpnSelectList[slot + 1] = idx; |
| 1178 | } |
| 1179 | |
| 1180 | void SetAutoSelectSecondaryWpnIdx(int slot, uint16_t idx) { |
| 1181 | if (slot < 0 || slot >= MAX_SECONDARY_WEAPONS) |
no outgoing calls
no test coverage detected