From bae1ad52ac3de6ea90bf22ca5eb8704554c7ed2d Mon Sep 17 00:00:00 2001 From: fundamental Date: Sun, 30 Jul 2017 11:20:56 -0400 Subject: Fix VST Build With DISTRHO_PLUGIN_HAS_EXTERNAL_UI --- distrho/src/DistrhoPluginVST.cpp | 2 ++ 1 file changed, 2 insertions(+) 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(index)); +# endif return 0; } -- cgit v1.2.3