summaryrefslogtreecommitdiff
path: root/distrho/src/DistrhoPluginLV2export.cpp
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2018-08-04 02:08:08 +0200
committerfalkTX <falktx@gmail.com>2018-08-04 02:08:08 +0200
commitffdfaa6174adaa538150e95a128bf4f5f5f6d292 (patch)
tree22c1f528445494bebee3646f5845d296d50d3c10 /distrho/src/DistrhoPluginLV2export.cpp
parentf2ed265a003e5d426953bb9d91aec7de093986e0 (diff)
Implement MIDI output for all formats
Needs testing, I did none :)
Diffstat (limited to 'distrho/src/DistrhoPluginLV2export.cpp')
-rw-r--r--distrho/src/DistrhoPluginLV2export.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/distrho/src/DistrhoPluginLV2export.cpp b/distrho/src/DistrhoPluginLV2export.cpp
index 295525b5..d2fa86ae 100644
--- a/distrho/src/DistrhoPluginLV2export.cpp
+++ b/distrho/src/DistrhoPluginLV2export.cpp
@@ -1,6 +1,6 @@
/*
* DISTRHO Plugin Framework (DPF)
- * Copyright (C) 2012-2017 Filipe Coelho <falktx@falktx.com>
+ * Copyright (C) 2012-2018 Filipe Coelho <falktx@falktx.com>
*
* Permission to use, copy, modify, and/or distribute this software for any purpose with
* or without fee is hereby granted, provided that the above copyright notice and this
@@ -80,7 +80,7 @@ void lv2_generate_ttl(const char* const basename)
// Dummy plugin to get data from
d_lastBufferSize = 512;
d_lastSampleRate = 44100.0;
- PluginExporter plugin;
+ PluginExporter plugin(nullptr, nullptr);
d_lastBufferSize = 0;
d_lastSampleRate = 0.0;