From acb07df03f5ae5883fa84f6998f06e691b967965 Mon Sep 17 00:00:00 2001 From: Oleg Samarin Date: Tue, 12 Mar 2024 21:23:23 +0300 Subject: [PATCH] Fixed loading config of windchest --- src/grandorgue/model/GOWindchest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grandorgue/model/GOWindchest.cpp b/src/grandorgue/model/GOWindchest.cpp index 383f8f7db..6bfbbbc80 100644 --- a/src/grandorgue/model/GOWindchest.cpp +++ b/src/grandorgue/model/GOWindchest.cpp @@ -76,7 +76,7 @@ void GOWindchest::Load(GOConfigReader &cfg, wxString group, unsigned index) { wxT("Name"), false, wxString::Format(_("Windchest %d"), index + 1)); - m_PipeConfig.Init(cfg, group, wxEmptyString); + m_PipeConfig.Load(cfg, group, wxEmptyString); m_PipeConfig.SetName(GetName()); }