Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ak5k committed Mar 17, 2023
1 parent 16c46c9 commit dd18428
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions source/map_plugins.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,16 @@ void MapPlugins()

tempMap.clear();
id = "ReaComp";
tempMap[1] = ControlTarget {"Thresh", 1};
tempMap[1] = ControlTarget {"Threshold", 1};
tempMap[2] = ControlTarget {"Ratio", 1};
tempMap[3] = ControlTarget {"Attack", 1};
tempMap[4] = ControlTarget {"Release", 1};
tempMap[5] = ControlTarget {"Knee", 1};
tempMap[6] = ControlTarget {"RMS size", 1};
tempMap[7] = ControlTarget {"Dry", 1};
tempMap[8] = ControlTarget {"Wet", 1};
tempMap[17] = ControlTarget {"AutoMkUp", 1};
tempMap[18] = ControlTarget {"AutoRel", 1};
tempMap[17] = ControlTarget {"Auto Make Up Gain", 1};
tempMap[18] = ControlTarget {"Auto Release", 1};
for (auto&& i : tempMap) {
i.second.step = i.second.step * 2;
}
Expand All @@ -159,15 +159,15 @@ void MapPlugins()

tempMap.clear();
id = "ReaGate";
tempMap[1] = ControlTarget {"Thresh", 1};
tempMap[1] = ControlTarget {"Threshold", 1};
tempMap[2] = ControlTarget {"Hold", 1};
tempMap[3] = ControlTarget {"Attack", 1};
tempMap[4] = ControlTarget {"Release", 1};
tempMap[5] = ControlTarget {"Hystrsis", 1};
tempMap[5] = ControlTarget {"Hysteresis", 1};
tempMap[6] = ControlTarget {"RMS size", 1};
tempMap[7] = ControlTarget {"Dry", 1};
tempMap[8] = ControlTarget {"Wet", 1};
tempMap[17] = ControlTarget {"InvrtWet", 5};
tempMap[17] = ControlTarget {"Invert Wet", 5};
for (auto&& i : tempMap) {
i.second.step = i.second.step * 2;
}
Expand All @@ -176,19 +176,19 @@ void MapPlugins()
tempMap.clear();
bands = 24;
id = "ReaXcomp";
tempMap[1] = ControlTarget {"00-Thresh", 1, bands};
tempMap[1] = ControlTarget {"00-Threshold", 1, bands};
tempMap[2] = ControlTarget {"00-Ratio", 1, bands};
tempMap[3] = ControlTarget {"00-Attack", 1, bands};
tempMap[4] = ControlTarget {"00-Release", 1, bands};
tempMap[5] = ControlTarget {"00-Knee", 1, bands};
tempMap[6] = ControlTarget {"00-RMS", 1, bands};
tempMap[7] = ControlTarget {"00-Freq", 1, bands};
tempMap[7] = ControlTarget {"00-Band top frequency", 1, bands};
tempMap[9] = ControlTarget {"00-Active", 5, bands};
tempMap[17] = ControlTarget {"-band", 2, bands};
tempMap[18] = ControlTarget {"band", 2, bands};
tempMap[19] = ControlTarget {"00-MakeUp", 5, bands};
tempMap[20] = ControlTarget {"00-AutoRel", 5, bands};
tempMap[21] = ControlTarget {"00-FeedBk", 5, bands};
tempMap[19] = ControlTarget {"00-Make Up Gain", 5, bands};
tempMap[20] = ControlTarget {"00-Auto Release", 5, bands};
tempMap[21] = ControlTarget {"00-FeedBack Detector", 5, bands};
for (auto&& i : tempMap) {
i.second.step = i.second.step * 2;
}
Expand Down
2 changes: 1 addition & 1 deletion vendor/WDL
Submodule WDL updated 177 files

0 comments on commit dd18428

Please sign in to comment.