mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-04 03:35:19 +02:00
Fix division by zero in low latency audio mode
This commit is contained in:
@@ -85,7 +85,7 @@ void __AudioInit() {
|
||||
|
||||
if (g_Config.bLowLatencyAudio) {
|
||||
chanQueueMaxSizeFactor = 1;
|
||||
chanQueueMinSizeFactor = 0;
|
||||
chanQueueMinSizeFactor = 1;
|
||||
hwBlockSize = 16;
|
||||
hostAttemptBlockSize = 256;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user