1
0
Fork 0
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:
jules 2018-10-17 14:19:31 +01:00
parent f9a5bf1729
commit 3721dc63d5

View file

@ -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;