Skip to content

Commit

Permalink
fix bug with setting playback speed
Browse files Browse the repository at this point in the history
It was a simple copy-paste bug. *sigh*
  • Loading branch information
ValleyBell committed Jan 3, 2024
1 parent 185694b commit 223b6f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion player/playera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ void PlayerA::SetPlaybackSpeed(double speed)
{
_config.pbSpeed = speed;
for (size_t curPlr = 0; curPlr < _avbPlrs.size(); curPlr++)
_avbPlrs[curPlr]->SetSampleRate(_smplRate);
_avbPlrs[curPlr]->SetPlaybackSpeed(_config.pbSpeed);
return;
}

Expand Down

0 comments on commit 223b6f9

Please sign in to comment.