diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2003-06-12 13:21:24 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2003-06-12 13:21:24 +0000 |
commit | d1f912c93aef58acb6b69b16576792bbcd608399 (patch) | |
tree | b59dc082b3489a4ebdc31ac060c493ec543385ef /externals/grill | |
parent | a8c6a5df92ccd331682f108b488fc101105939e0 (diff) |
""
svn path=/trunk/; revision=700
Diffstat (limited to 'externals/grill')
-rw-r--r-- | externals/grill/vst/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/grill/vst/src/main.cpp b/externals/grill/vst/src/main.cpp index c74c1dcc..5cacb80a 100644 --- a/externals/grill/vst/src/main.cpp +++ b/externals/grill/vst/src/main.cpp @@ -65,7 +65,7 @@ protected: V mg_winy(I &y) const { y = plug?plug->getY():0; } V ms_winx(I x) { if(plug) plug->setX(x); } V ms_winy(I y) { if(plug) plug->setY(y); } - + V mg_chnsin(I &c) const { c = plug?plug->getNumInputs():0; } V mg_chnsout(I &c) const { c = plug?plug->getNumOutputs():0; } V mg_params(I &p) const { p = plug?plug->GetNumParams():0; } |