Skip to content

Commit eaa1d28

Browse files
committed
updated README
1 parent 73c4cfa commit eaa1d28

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Build Dependencies:
55
- JUCE (https://juce.com/download/)
66
- Projucer (https://docs.juce.com/master/tutorial_new_projucer_project.html) (for creating Xcode/Visual Studio projects in order to build)
77

8-
Windows:
8+
<!--Windows:
99
- Compiled Windows files are available under "Releases". Unzip the files and place them in
1010
- C:\Program Files\Common Files\VST3 (VST3)
11-
<!-- - C:\Program Files\Common Files\Avid\Audio\Plug-Ins (AAX) -->
12-
11+
- C:\Program Files\Common Files\Avid\Audio\Plug-Ins (AAX)
12+
-->
1313
macOS:
1414
- Compiled macOS files are available under "Releases". Unzip the files and place them in
1515
- Macintosh HD/Library/Audio/Plug-Ins/Components/ (AU)

Source/ConcertHallB.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -403,10 +403,10 @@ void LargeConcertHallB::reset()
403403
const juce::String LargeConcertHallB::getName() const { return "LargeConcertHallB"; }
404404

405405
//==============================================================================
406-
void LargeConcertHallB::setSize(float newSize) { mSize = newSize * 44.1 / 34.125; }
407-
void LargeConcertHallB::setDecay(float newDecay) { mDecay = pow(newDecay, 0.67) / 0.9; }
406+
void LargeConcertHallB::setSize(float newSize) { mSize = newSize * (44.1 / 34.125); }
407+
void LargeConcertHallB::setDecay(float newDecay) { mDecay = pow(newDecay, 0.75) * 1.2; }
408408
void LargeConcertHallB::setDampingCutoff(float newCutoff) { mDampingCutoff = newCutoff; }
409-
void LargeConcertHallB::setDiffusion(float newDiffusion) { mDiffusion = newDiffusion * 1.5; }
409+
void LargeConcertHallB::setDiffusion(float newDiffusion) { mDiffusion = newDiffusion * 2; }
410410
void LargeConcertHallB::setPreDelay(float newPreDelay) { mPreDelayTime = newPreDelay; }
411411
void LargeConcertHallB::setEarlyLateMix(float newMix) { mEarlyLateMix = newMix; }
412412
void LargeConcertHallB::setDryWetMix(float newMix) { mDryWetMix = newMix; }

0 commit comments

Comments
 (0)