From ae93f8e4767466cf6ac827efbe57b7071a734e09 Mon Sep 17 00:00:00 2001 From: probonopd Date: Thu, 30 May 2024 18:04:36 +0200 Subject: [PATCH] SetVoiceName() suggested by @diyelectromusic --- src/minidexed.cpp | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index 0bd1e63..a364b88 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -1763,20 +1763,14 @@ bool CMiniDexed::IsValidPerformanceBank(unsigned nBankID) return m_PerformanceConfig.IsValidPerformanceBank(nBankID); } -void CMiniDexed::SetVoiceName(std::string VoiceName, unsigned nTG) +void CMiniDexed::SetVoiceName (std::string VoiceName, unsigned nTG) { - assert(nTG < CConfig::ToneGenerators); - assert(m_pTG[nTG]); - - // Define a buffer with enough space for the string and null terminator - char Name[VoiceName.size() + 1]; - - // Copy the string and ensure null termination - strncpy(Name, VoiceName.c_str(), VoiceName.size()); - Name[VoiceName.size()] = '\0'; - - // Pass the null-terminated string to getName - m_pTG[nTG]->getName(Name); + assert (nTG < CConfig::ToneGenerators); + assert (m_pTG[nTG]); + char Name[11]; + strncpy(Name, VoiceName.c_str(),10); + Name[10] = '\0'; + m_pTG[nTG]->getName (Name); } bool CMiniDexed::DeletePerformance(unsigned nID)