Browse Source

Added some handy debug traces

master
nebogeo 22 years ago
parent
commit
666a1ef41a
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      SpiralSynthModular.C

+ 10
- 1
SpiralSynthModular.C View File

@@ -137,9 +137,18 @@ void SynthModular::Update()
{
if (i->second->m_Device) // if it's not a comment
{
#ifdef DEBUG_PLUGINS
cerr<<"Updating channelhandler of pluin "<<i->second->m_PluginID<<endl;
#endif
// updates the data from the gui thread, if it's not blocking
i->second->m_Device->UpdateChannelHandler();
// run any commands we've received from the GUI's
#ifdef DEBUG_PLUGINS
cerr<<"Finished updating"<<endl;
#endif
// run any commands we've received from the GUI's
i->second->m_Device->ExecuteCommands();
}
}


Loading…
Cancel
Save