From 60f5e53f605325c69a4861f732a2c1d51d5ba820 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 16 Sep 2014 19:12:02 +0200 Subject: options: change --volstep to 2 With default settings, this allows you to hit the 100% mark (with default --softvol-max in the middle) even if you've reached min or max volume before. This is because 50 is not divisible by 3 (old default) but by 2 (new default). Not really sure why there still can be issues with higher --softvol-max and --volstep=1, but this is where I stop caring. --- options/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'options') diff --git a/options/options.c b/options/options.c index d22aebb28a..a57b5fffb4 100644 --- a/options/options.c +++ b/options/options.c @@ -558,7 +558,7 @@ const struct MPOpts mp_default_opts = { .softvol_max = 200, .mixer_init_volume = -1, .mixer_init_mute = -1, - .volstep = 3, + .volstep = 2, .gapless_audio = -1, .audio_buffer = 0.2, .vo = { -- cgit v1.2.3