Skip to content

Commit

Permalink
A few balance changes on beat detection.
Browse files Browse the repository at this point in the history
  • Loading branch information
OfficialIncubo authored Mar 16, 2023
1 parent 5b74368 commit 052e296
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vis_milk2/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8826,9 +8826,9 @@ void CPlugin::DoCustomSoundAnalysis()

if (i == 2)
{
start = MY_FFT_SAMPLES*i/6;
end = MY_FFT_SAMPLES*(i + 1)/6;
//treb as normal beat detection code
start = MY_FFT_SAMPLES*i/12;
end = MY_FFT_SAMPLES*(i + 1)/12;
//treb
}

mysound.imm[i] = 0;
Expand Down

0 comments on commit 052e296

Please sign in to comment.