summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-30 18:24:20 +0200
committerwm4 <wm4@nowhere>2014-06-30 18:24:35 +0200
commit1c0939cb803d2ebec8fda3782dd890ebeb9229f5 (patch)
tree640fe881a94a7a1834276467a69f365c22ef9abf
parentdd9420471f5a5b4434a3b025909ee93009b5bab7 (diff)
downloadmpv-1c0939cb803d2ebec8fda3782dd890ebeb9229f5.tar.bz2
mpv-1c0939cb803d2ebec8fda3782dd890ebeb9229f5.tar.xz
options: fix --gapless-audio default value
It was intended to be set to "weak" (and that was even documented), but the actual setting was "no". Closes #890. CC: @mpv-player/stable
-rw-r--r--options/options.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/options/options.c b/options/options.c
index 784ef00867..3fdc053c44 100644
--- a/options/options.c
+++ b/options/options.c
@@ -540,6 +540,7 @@ const struct MPOpts mp_default_opts = {
.mixer_init_volume = -1,
.mixer_init_mute = -1,
.volstep = 3,
+ .gapless_audio = -1,
.vo = {
.video_driver_list = NULL,
.monitor_pixel_aspect = 1.0,