| 2638 | } |
| 2639 | |
| 2640 | xModelInstance* zNPCCommon::ModelAtomicShow(S32 index, xModelInstance* mdl) |
| 2641 | { |
| 2642 | xModelInstance* minst = mdl ? mdl : this->ModelAtomicFind(index, -1, NULL); |
| 2643 | if (!minst) |
| 2644 | return minst; |
| 2645 | |
| 2646 | minst->Flags |= 0x2; |
| 2647 | minst->Flags |= 0x1; |
| 2648 | |
| 2649 | return minst; |
| 2650 | } |
| 2651 | |
| 2652 | xModelInstance* zNPCCommon::ModelAtomicFind(S32 index, S32 idx_prev, xModelInstance* mdl_prev) |
| 2653 | { |
no test coverage detected