This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fixed a counter in ThreadedWriter
tags/2021-05-28
jules
11 years ago
parent
8bbe42c4e2
commit
09f35b6cbd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_audio_formats/format/juce_AudioFormatWriter.cpp
+ 1
- 1
modules/juce_audio_formats/format/juce_AudioFormatWriter.cpp
View File
@@ -276,7 +276,7 @@ public:
if (samplesPerFlush > 0)
{
flushSampleCounter -=
numToDo
;
flushSampleCounter -=
size1 + size2
;
if (flushSampleCounter <= 0)
{
Write
Preview
Loading…
Cancel
Save