|
|
@ -1767,8 +1767,15 @@ void CMiniDexed::SetVoiceName (std::string VoiceName, unsigned nTG) |
|
|
|
{ |
|
|
|
{ |
|
|
|
assert(nTG < CConfig::ToneGenerators); |
|
|
|
assert(nTG < CConfig::ToneGenerators); |
|
|
|
assert(m_pTG[nTG]); |
|
|
|
assert(m_pTG[nTG]); |
|
|
|
char Name[10]; |
|
|
|
|
|
|
|
strncpy(Name, VoiceName.c_str(),10); |
|
|
|
// 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); |
|
|
|
m_pTG[nTG]->getName(Name); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|