mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a typo in the last commit
This commit is contained in:
parent
f9a5bf1729
commit
3721dc63d5
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ int BufferingAudioReader::useTimeSlice()
|
|||
|
||||
bool BufferingAudioReader::readNextBufferChunk()
|
||||
{
|
||||
auto pos = nextReadPosition.get();
|
||||
auto pos = nextReadPosition.load();
|
||||
auto startPos = ((pos - 1024) / samplesPerBlock) * samplesPerBlock;
|
||||
auto endPos = startPos + numBlocks * samplesPerBlock;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue