chore: consistant names
This commit is contained in:
parent
75843a7309
commit
386f8b7e54
5 changed files with 7 additions and 7 deletions
|
|
@ -2,9 +2,9 @@
|
|||
#include <cstdint>
|
||||
|
||||
template <uint32_t NumInputs>
|
||||
Mixer<NumInputs>::Mixer(float init_gain) : normalise_(false) {
|
||||
Mixer<NumInputs>::Mixer(float initGain) : normalise_(false) {
|
||||
for (uint32_t i = 0; i < NumInputs; ++i) {
|
||||
gains_[i] = init_gain;
|
||||
gains_[i] = initGain;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue