Mercurial > hg > svapp
changeset 31:b1112948724f
* Some work on reloading play parameters from file (not quite working yet)
* Win32: redirect stderr to console
* A bit of menu reorganisation
author | Chris Cannam |
---|---|
date | Wed, 26 Apr 2006 14:09:55 +0000 |
parents | f38b8abd3540 |
children | 42989c2e621b |
files | audioio/AudioGenerator.cpp |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/audioio/AudioGenerator.cpp Tue Apr 25 22:14:43 2006 +0000 +++ b/audioio/AudioGenerator.cpp Wed Apr 26 14:09:55 2006 +0000 @@ -119,7 +119,12 @@ AudioGenerator::playPluginConfigurationChanged(const Model *model, QString configurationXml) { - if (m_synthMap.find(model) == m_synthMap.end()) return; + std::cerr << "AudioGenerator::playPluginConfigurationChanged" << std::endl; + + if (m_synthMap.find(model) == m_synthMap.end()) { + std::cerr << "AudioGenerator::playPluginConfigurationChanged: We don't know about this plugin" << std::endl; + return; + } RealTimePluginInstance *plugin = m_synthMap[model]; if (plugin) {