From 63293f6f353f4f9c10b448a704dc63e2670949ae Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 27 Apr 2025 18:38:40 +0200 Subject: [PATCH] BREAKING CHANGE: Load default performances from performance/001_Default rather than performance/ Closes #893, #894 --- src/performanceconfig.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/performanceconfig.cpp b/src/performanceconfig.cpp index d0ce2de..e1f5922 100644 --- a/src/performanceconfig.cpp +++ b/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);