| 662 | } |
| 663 | |
| 664 | S32 zSaveLoad_CardDamagedErrorPrompt(S32 mode) |
| 665 | { |
| 666 | int i = 0x38; |
| 667 | if (mode == 1) |
| 668 | { |
| 669 | i = 0x37; |
| 670 | } |
| 671 | zSaveLoad_UIEvent(i, eEventUIFocusOn_Select); |
| 672 | |
| 673 | promptSel = -1; |
| 674 | while (promptSel == -1) |
| 675 | { |
| 676 | zSaveLoad_Tick(); |
| 677 | } |
| 678 | |
| 679 | i = 0x38; |
| 680 | if (mode == 1) |
| 681 | { |
| 682 | i = 0x37; |
| 683 | } |
| 684 | zSaveLoad_UIEvent(i, eEventUIFocusOff_Unselect); |
| 685 | return promptSel; |
| 686 | } |
| 687 | |
| 688 | S32 zSaveLoad_SaveDamagedErrorPrompt(S32 cardNumber) |
| 689 | { |
no test coverage detected