DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit e24e2a42ad7e846066ceef941b96b8f90063bd87
parent 00494798841af86f8dd954f04ac0673d4d8efb36
Author: falkTX <falktx@falktx.com>
Date:   Tue, 20 Sep 2022 22:33:25 +0100

Fix a compiler warning

Diffstat:
Mdistrho/src/DistrhoPluginCLAP.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/distrho/src/DistrhoPluginCLAP.cpp b/distrho/src/DistrhoPluginCLAP.cpp @@ -273,7 +273,7 @@ public: #else UIExporter tmpUI(nullptr, 0, fPlugin.getSampleRate(), nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, d_nextBundlePath, - fPlugin.getInstancePointer(), fScaleFactor); + fPlugin.getInstancePointer(), scaleFactor); *width = tmpUI.getWidth(); *height = tmpUI.getHeight(); scaleFactor = tmpUI.getScaleFactor();