Skip to content

Commit

Permalink
Use initialization with =
Browse files Browse the repository at this point in the history
  • Loading branch information
sakertooth committed Mar 12, 2024
1 parent 04e3a04 commit f7a723f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/Monstro/Monstro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,8 @@ void MonstroSynth::renderOutput( fpp_t _frames, sampleFrame * _buf )
float rightph = 0.0f;
float pd_l = 0.0f;
float pd_r = 0.0f;
float len_l(0.);
float len_r(0.);
float len_l = 0.0f;
float len_r = 0.0f;

// osc1 vars
float o1l_f = 0.0f;
Expand Down

0 comments on commit f7a723f

Please sign in to comment.