Browse Source

Fixed a typo in AudioChannelSet::ChannelType

tags/2021-05-28
ed 5 years ago
parent
commit
e9f8758791
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp
  2. +1
    -1
      modules/juce_audio_basics/buffers/juce_AudioChannelSet.h

+ 2
- 2
modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp View File

@@ -110,7 +110,7 @@ String AudioChannelSet::getChannelTypeName (AudioChannelSet::ChannelType type)
case bottomFrontLeft: return NEEDS_TRANS("Bottom Front Left");
case bottomFrontCentre: return NEEDS_TRANS("Bottom Front Centre");
case bottomFrontRight: return NEEDS_TRANS("Bottom Front Right");
case proxymityLeft: return NEEDS_TRANS("Proximity Left");
case proximityLeft: return NEEDS_TRANS("Proximity Left");
case proximityRight: return NEEDS_TRANS("Proximity Right");
case bottomSideLeft: return NEEDS_TRANS("Bottom Side Left");
case bottomSideRight: return NEEDS_TRANS("Bottom Side Right");
@@ -196,7 +196,7 @@ String AudioChannelSet::getAbbreviatedChannelTypeName (AudioChannelSet::ChannelT
case bottomFrontLeft: return "Bfl";
case bottomFrontCentre: return "Bfc";
case bottomFrontRight: return "Bfr";
case proxymityLeft: return "Pl";
case proximityLeft: return "Pl";
case proximityRight: return "Pr";
case bottomSideLeft: return "Bsl";
case bottomSideRight: return "Bsr";


+ 1
- 1
modules/juce_audio_basics/buffers/juce_AudioChannelSet.h View File

@@ -369,7 +369,7 @@ public:
bottomFrontCentre = 63, /**< Bottom Front Centre (Bfc) */
bottomFrontRight = 64, /**< Bottom Front Right (Bfr) */
proxymityLeft = 65, /**< Proximity Left (Pl) */
proximityLeft = 65, /**< Proximity Left (Pl) */
proximityRight = 66, /**< Proximity Right (Pr) */
bottomSideLeft = 67, /**< Bottom Side Left (Bsl) */


Loading…
Cancel
Save