| 2617 | } |
| 2618 | |
| 2619 | static U32 SlideTrackCB(xAnimTransition*, xAnimSingle*, void*) |
| 2620 | { |
| 2621 | sLasso->flags = 0; |
| 2622 | globals.player.SlideTrackLean = 0.0f; |
| 2623 | |
| 2624 | if (globals.player.Health != 0 && sPlayerSndID[gCurrentPlayer][ePlayerSnd_SlideLoop] == 0) |
| 2625 | { |
| 2626 | zEntPlayer_SNDPlay(ePlayerSnd_SlideLoop, 0.0f); |
| 2627 | } |
| 2628 | |
| 2629 | if (gCurrentPlayer == eCurrentPlayerSandy) |
| 2630 | { |
| 2631 | globals.player.Jump_CanDouble = 1; |
| 2632 | } |
| 2633 | |
| 2634 | zEntPlayerKillCarry(); |
| 2635 | zEntPlayer_SNDStop(ePlayerSnd_SlipLoop); |
| 2636 | |
| 2637 | return 0; |
| 2638 | } |
| 2639 | |
| 2640 | static U32 NoslideTrackCB(xAnimTransition*, xAnimSingle*, void*) |
| 2641 | { |
nothing calls this directly
no test coverage detected