1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

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
This commit is contained in:
voroshil 2007-08-26 12:12:02 +00:00
parent 0ae4749513
commit ac6d51f005

View File

@ -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