diff --git a/rpcs3/Emu/system_config.h b/rpcs3/Emu/system_config.h index bcb24b4895..b5e114f7a0 100644 --- a/rpcs3/Emu/system_config.h +++ b/rpcs3/Emu/system_config.h @@ -213,7 +213,7 @@ struct cfg_root : cfg::node cfg::_int<1, 128> startt{ this, "Start Threshold", 1 }; // TODO: used only by ALSA, should probably be removed once ALSA is upgraded cfg::_int<0, 200> volume{ this, "Master Volume", 100 }; cfg::_bool enable_buffering{ this, "Enable Buffering", true }; - cfg::_int <20, 250> desired_buffer_duration{ this, "Desired Audio Buffer Duration", 100 }; + cfg::_int <4, 250> desired_buffer_duration{ this, "Desired Audio Buffer Duration", 100 }; cfg::_int<1, 1000> sampling_period_multiplier{ this, "Sampling Period Multiplier", 100 }; cfg::_bool enable_time_stretching{ this, "Enable Time Stretching", false }; cfg::_int<0, 100> time_stretching_threshold{ this, "Time Stretching Threshold", 75 };