Mercurial > hg > svcore
comparison plugin/DSSIPluginInstance.cpp @ 62:33285f426852
fixed some problems with building the latest revision on the mac
author | Martin Gasser |
---|---|
date | Tue, 28 Mar 2006 23:57:32 +0000 |
parents | 3086ff194ea0 |
children | 7afcfe666910 |
comparison
equal
deleted
inserted
replaced
61:749b5521e082 | 62:33285f426852 |
---|---|
771 } | 771 } |
772 } | 772 } |
773 } | 773 } |
774 | 774 |
775 float | 775 float |
776 DSSIPluginInstance::getControlOutputValue(unsigned int output) const | 776 DSSIPluginInstance::getControlOutputValue(size_t output) const |
777 { | 777 { |
778 if (output > m_controlPortsOut.size()) return 0.0; | 778 if (output > m_controlPortsOut.size()) return 0.0; |
779 return (*m_controlPortsOut[output].second); | 779 return (*m_controlPortsOut[output].second); |
780 } | 780 } |
781 | 781 |