diff options
author | Chris Robinson <[email protected]> | 2017-02-22 15:56:09 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-02-22 15:56:09 -0800 |
commit | 55e3b840b351d59e9e746080ab0eac93fea93e04 (patch) | |
tree | e18ba2c15c945e170a5ab19b95f2b8164802cecd /Alc | |
parent | 2e1f1449bc7bd9f50822298577be203693deca7f (diff) |
Reduce the default period count to 3
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3639,7 +3639,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName) device->Frequency = DEFAULT_OUTPUT_RATE; device->IsHeadphones = AL_FALSE; device->AmbiFmt = AmbiFormat_Default; - device->NumUpdates = 4; + device->NumUpdates = 3; device->UpdateSize = 1024; if(!PlaybackBackend.getFactory) |