| 213 | } |
| 214 | |
| 215 | bool FolderMemoryCard::ReIndex(bool enableFiltering, const std::string& filter) |
| 216 | { |
| 217 | if (!m_isEnabled) |
| 218 | { |
| 219 | return false; |
| 220 | } |
| 221 | |
| 222 | if (m_filteringEnabled != enableFiltering || m_filteringString != filter) |
| 223 | { |
| 224 | Close(); |
| 225 | Open(enableFiltering, filter); |
| 226 | return true; |
| 227 | } |
| 228 | |
| 229 | return false; |
| 230 | } |
| 231 | |
| 232 | void FolderMemoryCard::LoadMemoryCardData(const u32 sizeInClusters, const bool enableFiltering, const std::string& filter) |
| 233 | { |
no test coverage detected