summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-01-03 21:50:04 +0100
committerKevin Mitchell <kevmitch@gmail.com>2018-01-03 15:43:51 -0800
commite894f75bb570e20966d64607aa69d64ba9022bd8 (patch)
tree26f84a5540e6e3eae0cbc1ee817aa74a23bd87f1 /options/options.c
parentf798bc3c2542b4c3e7b4cb1483d41ce309b4fb51 (diff)
downloadmpv-e894f75bb570e20966d64607aa69d64ba9022bd8.tar.bz2
mpv-e894f75bb570e20966d64607aa69d64ba9022bd8.tar.xz
player: cosmetics: rename internal variable for consistency
This was so annoying.
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/options/options.c b/options/options.c
index 08cb9be3cf..c0697e8e71 100644
--- a/options/options.c
+++ b/options/options.c
@@ -450,7 +450,7 @@ const m_option_t mp_opts[] = {
OPT_STRING("sub-demuxer", sub_demuxer_name, 0),
OPT_FLAG("demuxer-thread", demuxer_thread, 0),
OPT_FLAG("prefetch-playlist", prefetch_open, 0),
- OPT_FLAG("cache-pause", cache_pausing, 0),
+ OPT_FLAG("cache-pause", cache_pause, 0),
OPT_FLAG("cache-pause-initial", cache_pause_initial, 0),
OPT_FLOAT("cache-pause-wait", cache_pause_wait, M_OPT_MIN, .min = 0),
@@ -895,7 +895,7 @@ const struct MPOpts mp_default_opts = {
.autoload_files = 1,
.demuxer_thread = 1,
.hls_bitrate = INT_MAX,
- .cache_pausing = 1,
+ .cache_pause = 1,
.cache_pause_wait = 1.0,
.chapterrange = {-1, -1},
.ab_loop = {MP_NOPTS_VALUE, MP_NOPTS_VALUE},