MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / ReIndex

Method ReIndex

pcsx2/SIO/Memcard/MemoryCardFolder.cpp:215–230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215bool 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
232void FolderMemoryCard::LoadMemoryCardData(const u32 sizeInClusters, const bool enableFiltering, const std::string& filter)
233{

Callers 1

FileMcd_ReIndexFunction · 0.45

Calls 2

OpenFunction · 0.85
CloseFunction · 0.50

Tested by

no test coverage detected