BREAKING CHANGE: Load default performances from performance/001_Default

rather than performance/

Closes #893, #894
pull/895/head
probonopd 2 weeks ago
parent 83ea7ee551
commit 63293f6f35
  1. 6
      src/performanceconfig.cpp

@ -1290,12 +1290,6 @@ std::string CPerformanceConfig::AddPerformanceBankDirName(unsigned nBankID)
{
// Performance Banks directories in format "001_Bank Name"
std::string Index;
if (nBankID == 0)
{
// Legacy: Bank 1 is the default performance directory
return "";
}
if (nBankID < 9)
{
Index = "00" + std::to_string(nBankID+1);

Loading…
Cancel
Save