| 1563 | } |
| 1564 | |
| 1565 | static U32 BubbleSpinCheck(xAnimTransition*, xAnimSingle*, void*) |
| 1566 | { |
| 1567 | if (globals.player.cheat_mode != 0) |
| 1568 | { |
| 1569 | return 0; |
| 1570 | } |
| 1571 | |
| 1572 | if (zEntTeleportBox_playerIn()) |
| 1573 | { |
| 1574 | return 0; |
| 1575 | } |
| 1576 | |
| 1577 | return (!globals.player.ControlOff && globals.pad0->pressed & XPAD_BUTTON_TRIANGLE); |
| 1578 | } |
| 1579 | |
| 1580 | static U32 BubbleSpinCB(xAnimTransition*, xAnimSingle* anim, void*) |
| 1581 | { |
nothing calls this directly
no test coverage detected