summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-26 12:12:02 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-26 12:12:02 +0000
commitac6d51f0050324e28075d272dddd61aba17b8ffd (patch)
treeefd808b616b58576c99df259b2e5038c3fa04e56 /cfg-mplayer.h
parent0ae47495136895bec166719a3e616e1753aa3a7f (diff)
downloadmpv-ac6d51f0050324e28075d272dddd61aba17b8ffd.tar.bz2
mpv-ac6d51f0050324e28075d272dddd61aba17b8ffd.tar.xz
Suboptions structure should be passed as array not as address of array.
patch from Bernd Ernesti mplayer-dev-eng at lists dot veego dot de git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24208 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 294e1ca743..de269f4d9d 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -396,7 +396,7 @@ m_option_t mplayer_opts[]={
{"nomouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
{"doubleclick-time", &doubleclick_time, CONF_TYPE_INT, CONF_RANGE, 0, 1000, NULL},
#ifdef USE_TV
- {"tvscan", &tvscan_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
+ {"tvscan", tvscan_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
#else
{"tvscan", "MPlayer was compiled without TV interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
#endif