summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
Diffstat (limited to 'options')
-rw-r--r--options/options.c1
-rw-r--r--options/options.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/options/options.c b/options/options.c
index cff2eff810..b1131f0938 100644
--- a/options/options.c
+++ b/options/options.c
@@ -239,6 +239,7 @@ const m_option_t mp_opts[] = {
#if HAVE_LUA
OPT_STRINGLIST("lua", lua_files, CONF_GLOBAL),
+ OPT_KEYVALUELIST("lua-opts", lua_opts, CONF_GLOBAL),
OPT_FLAG("osc", lua_load_osc, CONF_GLOBAL),
#endif
diff --git a/options/options.h b/options/options.h
index 0a50352d0d..e328ccd25c 100644
--- a/options/options.h
+++ b/options/options.h
@@ -52,6 +52,7 @@ typedef struct MPOpts {
char **reset_options;
char **lua_files;
+ char **lua_opts;
int lua_load_osc;
struct m_obj_settings *audio_driver_list, *ao_defs;