| 622 | } |
| 623 | |
| 624 | void MainScreen::updateSelector(void) |
| 625 | { |
| 626 | if (TitleCatalog::get().progress().active) { |
| 627 | return; |
| 628 | } |
| 629 | |
| 630 | if (!g_bottomScrollEnabled) { |
| 631 | size_t count = TitleCatalog::get().getTitleCount(backupKind); |
| 632 | if (count > 0) { |
| 633 | hid.update(count); |
| 634 | directoryList->resetIndex(); |
| 635 | } |
| 636 | } |
| 637 | else { |
| 638 | directoryList->update(); |
| 639 | } |
| 640 | } |
| 641 | |
| 642 | void MainScreen::doBackup(size_t fullIndex, size_t cellIndex) |
| 643 | { |
nothing calls this directly
no test coverage detected