| 144 | } |
| 145 | |
| 146 | std::string titleBackupPath(int idx, int kind) override |
| 147 | { |
| 148 | Title title; |
| 149 | if (!catalogTitle(idx, title)) { |
| 150 | return ""; |
| 151 | } |
| 152 | BackupTarget target = title.backup(kind == 0 ? BackupKind::Save : BackupKind::Extdata); |
| 153 | return StringUtils::UTF16toUTF8(target.rootPath()); |
| 154 | } |
| 155 | |
| 156 | int savOpen(int titleIdx, int kind) override |
| 157 | { |
no test coverage detected