Browse Source

Fix compiler warnings (unused parameters)

pull/245/head
Johannes Lorenz 5 years ago
parent
commit
98b1f41197
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      distrho/src/DistrhoPluginVST.cpp

+ 5
- 1
distrho/src/DistrhoPluginVST.cpp View File

@@ -225,7 +225,11 @@ public:

int handlePluginKeyEvent(const bool down, int32_t index, const intptr_t value)
{
# if !DISTRHO_PLUGIN_HAS_EXTERNAL_UI
# if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
(void)down;
(void)index;
(void)value;
# else
if (! fShouldCaptureVstKeys)
return 0;



Loading…
Cancel
Save