From 23b1b7c55069f9184c4a99062754162b22f7e156 Mon Sep 17 00:00:00 2001 From: Kevin <68612569+diyelectromusic@users.noreply.github.com> Date: Mon, 10 Mar 2025 17:23:31 +0000 Subject: [PATCH] Potential fix for Issue #820 where 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); }