mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 07:13:57 +02:00
Increase audio input buffering on Windows 7
This commit is contained in:
parent
9590d2eef9
commit
46526a309d
1 changed files with 1 additions and 1 deletions
|
@ -1364,7 +1364,7 @@ int AudioClient::setOutputBufferSize(int numFrames, bool persist) {
|
|||
// proportional to the accelerator ratio.
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
const float AudioClient::CALLBACK_ACCELERATOR_RATIO = 1.0f;
|
||||
const float AudioClient::CALLBACK_ACCELERATOR_RATIO = IsWindows8OrGreater() ? 1.0f : 0.25f;
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
|
|
Loading…
Reference in a new issue