| 611 | } |
| 612 | |
| 613 | void MainScreen::updateSelector(void) |
| 614 | { |
| 615 | if (TitleCatalog::get().progress().active) { |
| 616 | return; |
| 617 | } |
| 618 | |
| 619 | if (!g_bottomScrollEnabled) { |
| 620 | size_t count = TitleCatalog::get().getTitleCount(backupKind); |
| 621 | if (count > 0) { |
| 622 | hid.update(count); |
| 623 | directoryList->resetIndex(); |
| 624 | } |
| 625 | } |
| 626 | else { |
| 627 | directoryList->update(); |
| 628 | } |
| 629 | } |
| 630 | |
| 631 | void MainScreen::doBackup(size_t fullIndex, size_t cellIndex) |
| 632 | { |
nothing calls this directly
no test coverage detected