From 616784c385feb32a8c7ffb7b99a856d983281525 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Sat, 2 Sep 2017 08:13:13 +0000 Subject: [PATCH] Increase prebuffer slightly, as certain things (create new surfaces) take a longer time nowadays. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4037 --- src/dosbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dosbox.cpp b/src/dosbox.cpp index 7308d8c5..2fd3d336 100644 --- a/src/dosbox.cpp +++ b/src/dosbox.cpp @@ -498,7 +498,7 @@ void DOSBOX_Init(void) { Pint->Set_values(blocksizes); Pint->Set_help("Mixer block size, larger blocks might help sound stuttering but sound will also be more lagged."); - Pint = secprop->Add_int("prebuffer",Property::Changeable::OnlyAtStart,20); + Pint = secprop->Add_int("prebuffer",Property::Changeable::OnlyAtStart,25); Pint->SetMinMax(0,100); Pint->Set_help("How many milliseconds of data to keep on top of the blocksize.");