Skip to content

Commit

Permalink
refactor: ループ変数名を明確化
Browse files Browse the repository at this point in the history
  • Loading branch information
AkiyukiOkayasu committed Jan 25, 2022
1 parent 89bdd14 commit f560daa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/ame_Reverb.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,16 +105,16 @@ class Freeverb
/** Clears the reverb's buffers. */
void reset()
{
for (int j = 0; j < MaximumChannels; ++j)
for (int ch = 0; ch < MaximumChannels; ++ch)
{
for (int i = 0; i < numCombs; ++i)
{
comb[j][i].clear();
comb[ch][i].clear();
}

for (int i = 0; i < numAllPasses; ++i)
{
allPass[j][i].clear();
allPass[ch][i].clear();
}
}
}
Expand Down

0 comments on commit f560daa

Please sign in to comment.