From d29098ca44c0d3e29f5bc61b1be24dd1ac19fcdb Mon Sep 17 00:00:00 2001 From: OV2 Date: Fri, 31 Mar 2023 17:02:47 +0200 Subject: [PATCH] win32: increase sound buffer to allow at least one frame (fixes #794) --- win32/win32_sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/win32_sound.cpp b/win32/win32_sound.cpp index d6adccd9..461541d5 100644 --- a/win32/win32_sound.cpp +++ b/win32/win32_sound.cpp @@ -54,7 +54,7 @@ bool ReInitSound() S9xSoundOutput->DeInitSoundOutput(); last_volume = 1.0; - return S9xInitSound(0); + return S9xInitSound(25); } void CloseSoundDevice() {