Browse Source

hmm

tags/1.9.4
falkTX 10 years ago
parent
commit
96d3bd669e
1 changed files with 6 additions and 2 deletions
  1. +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;
}
}
}


Loading…
Cancel
Save