From 92f0f978a15109c7df3eb729bc645ba4a38ed0bd Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 15 Jun 2021 12:28:59 +0100 Subject: [PATCH] Fix wording Signed-off-by: falkTX --- distrho/DistrhoPlugin.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/distrho/DistrhoPlugin.hpp b/distrho/DistrhoPlugin.hpp index e5b50787..dff23dcb 100644 --- a/distrho/DistrhoPlugin.hpp +++ b/distrho/DistrhoPlugin.hpp @@ -51,20 +51,20 @@ static const uint32_t kAudioPortIsSidechain = 0x2; static const uint32_t kCVPortHasBipolarRange = 0x10; /** - CV port has negative unipolar range (0 to +1, or 0 to +10 if scaled). + CV port has negative unipolar range (-1 to 0, or -10 to 0 if scaled). This is merely a hint to tell the host what value range to expect. */ static const uint32_t kCVPortHasNegativeUnipolarRange = 0x20; /** - CV port has positive unipolar range (-1 to 0, or -10 to 0 if scaled). + CV port has positive unipolar range (0 to +1, or 0 to +10 if scaled). This is merely a hint to tell the host what value range to expect. */ static const uint32_t kCVPortHasPositiveUnipolarRange = 0x40; /** CV port has scaled range to match real values (-5 to +5v bipolar, +/-10 to 0v unipolar). - One range flag is required if this flag is set. + One other range flag is required if this flag is set. When enabled, this makes the port a mod:CVPort, compatible with the MOD Devices platform. */