| 754 | } |
| 755 | } |
| 756 | static void fade_hook_out() |
| 757 | { |
| 758 | if (shared.flags & 0x40) |
| 759 | { |
| 760 | return; |
| 761 | } |
| 762 | |
| 763 | shared.flags &= ~0x60; |
| 764 | xModelInstance* hook = get_hook_model(); |
| 765 | if (hook != NULL) |
| 766 | { |
| 767 | hook->Flags |= 0x4000; |
| 768 | hook->PipeFlags = hook->PipeFlags & ~0x30 | 0x30; |
| 769 | shared.flags |= 0x40; |
| 770 | } |
| 771 | } |
| 772 | static void fade_hook_in() |
| 773 | { |
| 774 | if (shared.flags & 0x20) |
no test coverage detected