Fix division by zero in low latency audio mode

This commit is contained in:
Henrik Rydgard 2013-08-25 13:03:57 +02:00
parent 2d89323fc2
commit 4121d5ae62

View File

@ -85,7 +85,7 @@ void __AudioInit() {
if (g_Config.bLowLatencyAudio) {
chanQueueMaxSizeFactor = 1;
chanQueueMinSizeFactor = 0;
chanQueueMinSizeFactor = 1;
hwBlockSize = 16;
hostAttemptBlockSize = 256;
} else {