aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-02-22 15:56:09 -0800
committerChris Robinson <[email protected]>2017-02-22 15:56:09 -0800
commit55e3b840b351d59e9e746080ab0eac93fea93e04 (patch)
treee18ba2c15c945e170a5ab19b95f2b8164802cecd /Alc
parent2e1f1449bc7bd9f50822298577be203693deca7f (diff)
Reduce the default period count to 3
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index f91fc09b..c829d8e7 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -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)