Skip to content

Commit

Permalink
Fix FFTST bug
Browse files Browse the repository at this point in the history
  • Loading branch information
junh1024 committed May 25, 2021
1 parent e9ff9fa commit 23f04ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Specialist/FFT Stereo Tool (L).txt
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ spl0 = out0;
//subtract front from original spl0 to get back
// spl4=(out4-spl0)*slider8;
//this gets a bit tricky cuz we output the processed R or the difference
spl1 = out1*(1-actually_do_difference_output)+(actually_do_difference_output*(out4- out1 )) ;
spl1 = out1*(1-actually_do_difference_output)+(actually_do_difference_output*(out4- out0 )) ;

pos += 2;
pos2=(pos2+2)%(fftsize*2);
Expand Down

0 comments on commit 23f04ac

Please sign in to comment.