1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

options: fix bogus entry

This didn't make sense and caused issues with the following commit: if
it's an option with a data pointer, it should be writable.
This commit is contained in:
wm4 2013-10-24 22:19:20 +02:00
parent 7204dee3c7
commit f6bceacaff

View File

@ -330,7 +330,7 @@ const m_option_t mp_opts[] = {
{ "list-options", NULL, CONF_TYPE_STORE, CONF_NOCFG },
// handled in mplayer.c (looks at the raw argv[])
{"leak-report", "", CONF_TYPE_STORE, CONF_GLOBAL | CONF_NOCFG },
{"leak-report", NULL, CONF_TYPE_STORE, CONF_GLOBAL | CONF_NOCFG },
OPT_FLAG("shuffle", shuffle, CONF_GLOBAL | CONF_NOCFG),