Skip to content

Commit

Permalink
Update packages/react-native-audio-api/common/cpp/core/AudioBus.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsek authored Nov 26, 2024
1 parent 8e68895 commit 625cf45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void AudioBus::normalize() {
}

void AudioBus::scale(float value) {
for (auto it = channels_.begin(); it != channels_.end(); it += 1) {
for (auto it = channels_.begin(); it != channels_.end(); ++it) {
it->get()->scale(value);
}
}
Expand Down

0 comments on commit 625cf45

Please sign in to comment.