mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-03-01 18:47:02 +00:00
Fix division by zero in low latency audio mode
This commit is contained in:
parent
2d89323fc2
commit
4121d5ae62
@ -85,7 +85,7 @@ void __AudioInit() {
|
||||
|
||||
if (g_Config.bLowLatencyAudio) {
|
||||
chanQueueMaxSizeFactor = 1;
|
||||
chanQueueMinSizeFactor = 0;
|
||||
chanQueueMinSizeFactor = 1;
|
||||
hwBlockSize = 16;
|
||||
hostAttemptBlockSize = 256;
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user