From e9f8758791d08b03f0c839268c262118f6dba4c9 Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 10 Mar 2020 11:10:16 +0000 Subject: [PATCH] Fixed a typo in AudioChannelSet::ChannelType --- modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp | 4 ++-- modules/juce_audio_basics/buffers/juce_AudioChannelSet.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp b/modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp index 3dc0f57adb..dd5302068c 100644 --- a/modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp +++ b/modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp @@ -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"; diff --git a/modules/juce_audio_basics/buffers/juce_AudioChannelSet.h b/modules/juce_audio_basics/buffers/juce_AudioChannelSet.h index e9985a18fa..850a963bbb 100644 --- a/modules/juce_audio_basics/buffers/juce_AudioChannelSet.h +++ b/modules/juce_audio_basics/buffers/juce_AudioChannelSet.h @@ -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) */