Return index of generic that has matching table entry
| 6627 | |
| 6628 | // Return index of generic that has matching table entry |
| 6629 | int MultiMatchGeneric(uint32_t unique_id) { |
| 6630 | for (int i = 0; i < MAX_OBJECT_IDS; i++) |
| 6631 | if (Multi_generic_match_table[i] == unique_id) |
| 6632 | return i; |
| 6633 | |
| 6634 | return -1; |
| 6635 | } |
| 6636 | |
| 6637 | // Return index of generic that has matching table entry |
| 6638 | int MultiMatchWeapon(uint32_t unique_id) { |
no outgoing calls
no test coverage detected