From bba0c93f04f8a40a897faf54378d7f11f2729452 Mon Sep 17 00:00:00 2001 From: Kevin <68612569+diyelectromusic@users.noreply.github.com> Date: Mon, 10 Mar 2025 19:53:03 +0000 Subject: [PATCH] Fix for Issue #820 Saving default performance always overwrites the first performance in the current bank, but should act on bank 0, performance 0 --- src/minidexed.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index 1a714fc..a485981 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -1483,6 +1483,7 @@ bool CMiniDexed::DoSavePerformance (void) if(m_bSaveAsDeault) { + m_PerformanceConfig.SetNewPerformanceBank(0); m_PerformanceConfig.SetNewPerformance(0); }