From e24e2a42ad7e846066ceef941b96b8f90063bd87 Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 20 Sep 2022 22:33:52 +0100 Subject: [PATCH] Fix a compiler warning --- distrho/src/DistrhoPluginCLAP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrho/src/DistrhoPluginCLAP.cpp b/distrho/src/DistrhoPluginCLAP.cpp index a682726f..2bee91cd 100644 --- 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();