This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
hmm
tags/1.9.4
falkTX
10 years ago
parent
ce69f1569e
commit
96d3bd669e
1 changed files
with
6 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-2
source/backend/engine/CarlaEngineRtAudio.cpp
+ 6
- 2
source/backend/engine/CarlaEngineRtAudio.cpp
View File
@@ -709,7 +709,9 @@ protected:
if (++i == fAudioInCount)
{
i = 0;
++j;
if (++j == nframes)
j = 0;
}
}
}
@@ -775,7 +777,9 @@ protected:
if (++i == fAudioOutCount)
{
i = 0;
++j;
if (++j == nframes)
j = 0;
}
}
}
Write
Preview
Loading…
Cancel
Save