Browse Source

Docs: abstract FIFO example

v7.0.9
Nathan Blair Tom Poole 2 years ago
parent
commit
65f55e17ac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/containers/juce_AbstractFifo.h

+ 1
- 1
modules/juce_core/containers/juce_AbstractFifo.h View File

@@ -48,7 +48,7 @@ namespace juce
copySomeData (myBuffer + scope.startIndex1, someData, scope.blockSize1);
if (scope.blockSize2 > 0)
copySomeData (myBuffer + scope.startIndex2, someData, scope.blockSize2);
copySomeData (myBuffer + scope.startIndex2, someData + scope.blockSize1, scope.blockSize2);
}
void readFromFifo (int* someData, int numItems)


Loading…
Cancel
Save