Bugfix - removed redundant legacy check that results in out of order performance files being skipped on load.

pull/581/head
Kevin 1 year ago
parent e49a410d7e
commit 692f57ae9e
  1. 4
      src/performanceconfig.cpp

@ -981,9 +981,6 @@ bool CPerformanceConfig::ListPerformances()
Result = f_findfirst (&Directory, &FileInfo, PerfDir.c_str(), "*.ini");
for (unsigned i = 0; Result == FR_OK && FileInfo.fname[0]; i++)
{
if (m_nLastPerformance >= NUM_PERFORMANCES - 1) {
LOGNOTE ("Skipping performance %s", FileInfo.fname);
} else {
if (!(FileInfo.fattrib & (AM_HID | AM_SYS)))
{
std::string OriFileName = FileInfo.fname;
@ -1033,7 +1030,6 @@ bool CPerformanceConfig::ListPerformances()
}
}
}
}
Result = f_findnext (&Directory, &FileInfo);
}

Loading…
Cancel
Save