1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

Fixed a silly typo in the latest CoreAudio changes.

This commit is contained in:
jules 2013-12-20 17:02:07 +00:00
parent abc1cf4254
commit f79248c530

View file

@ -1328,7 +1328,7 @@ private:
inputChans.add (nullptr);
outputChans.add (nullptr);
const int blockSizeMs = jmax (1, (int) (numSamples / currentSampleRate));
const int blockSizeMs = jmax (1, (int) (1000 * numSamples / currentSampleRate));
jassert (numInputChans + numOutputChans == buffer.getNumChannels());