mirror of https://github.com/mpv-player/mpv
gui_opts should be const for win32 gui as well (why, oh why, was all
this code duplicated??). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25741 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
acd409b4bf
commit
1ade4e20ba
|
@ -58,7 +58,7 @@ extern char *proc_priority;
|
||||||
extern int m_config_parse_config_file(m_config_t *config, char *conffile);
|
extern int m_config_parse_config_file(m_config_t *config, char *conffile);
|
||||||
|
|
||||||
static m_config_t *gui_conf;
|
static m_config_t *gui_conf;
|
||||||
static m_option_t gui_opts[] =
|
static const m_option_t gui_opts[] =
|
||||||
{
|
{
|
||||||
{ "priority", &proc_priority, CONF_TYPE_STRING, 0, 0, 0, NULL},
|
{ "priority", &proc_priority, CONF_TYPE_STRING, 0, 0, 0, NULL},
|
||||||
{ "vo_driver", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL },
|
{ "vo_driver", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL },
|
||||||
|
|
Loading…
Reference in New Issue