| 770 | } |
| 771 | } |
| 772 | static void fade_hook_in() |
| 773 | { |
| 774 | if (shared.flags & 0x20) |
| 775 | { |
| 776 | return; |
| 777 | } |
| 778 | |
| 779 | shared.flags &= ~0x60; |
| 780 | xModelInstance* hook = get_hook_model(); |
| 781 | if (hook != NULL) |
| 782 | { |
| 783 | hook->Flags |= 0x4000; |
| 784 | hook->PipeFlags = hook->PipeFlags & ~0x30 | 0x30; |
| 785 | shared.flags |= 0x20; |
| 786 | } |
| 787 | } |
| 788 | static void fade_hook_update(float dt) |
| 789 | { |
| 790 | if ((shared.flags & 0x60) == 0) |
nothing calls this directly
no test coverage detected