summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfundamental <mark.d.mccurry@gmail.com>2017-07-30 11:20:56 -0400
committerfalkTX <falktx@gmail.com>2017-08-02 09:59:06 +0200
commit49022ac62d58abbc779e4a214cde42d032159bfa (patch)
tree68882cb119c3a4b79ec24dda0f3d548b05340759
parentfa54750583225c2e6aa5cda9baf9c18eb722daee (diff)
Fix VST Build With DISTRHO_PLUGIN_HAS_EXTERNAL_UI
-rw-r--r--distrho/src/DistrhoPluginVST.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/distrho/src/DistrhoPluginVST.cpp b/distrho/src/DistrhoPluginVST.cpp
index ce78b265..491798df 100644
--- a/distrho/src/DistrhoPluginVST.cpp
+++ b/distrho/src/DistrhoPluginVST.cpp
@@ -171,6 +171,7 @@ public:
int handlePluginKeyEvent(const bool down, int32_t index, const intptr_t value)
{
+# if !DISTRHO_PLUGIN_HAS_EXTERNAL_UI
d_stdout("handlePluginKeyEvent %i %i %li\n", down, index, (long int)value);
int special = 0;
@@ -215,6 +216,7 @@ public:
if (index >= 0)
return fUI.handlePluginKeyboard(down, static_cast<uint>(index));
+# endif
return 0;
}