Skip to content

Commit

Permalink
Tempo Sync Calculation For Number of Samples of Delay Added
Browse files Browse the repository at this point in the history
  • Loading branch information
RachelMaryamLocke committed Oct 25, 2023
1 parent 021416a commit e13032c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/processors/other/Delay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ void DelayModule::processAudio (AudioBuffer<float>& buffer)
}
else
{
float delayInSamples = fs * 200 * 0.001f ;
float delayInSamples = fs * 200 * 0.001f; //fallback delay
std::cout << "Delay Time In Notes..." << std::endl;
auto positionInfo = audioPlayHead.getPosition();
// auto hardcodedBpm = 120;
Expand Down

0 comments on commit e13032c

Please sign in to comment.