summaryrefslogtreecommitdiffstats
path: root/options/options.h
diff options
context:
space:
mode:
authorAvi Halachmi (:avih) <avihpit@yahoo.com>2014-12-15 01:31:30 +0200
committerwm4 <wm4@nowhere>2014-12-15 04:39:56 +0100
commit39e04e929483847a3e0722d86d53f69837ed99db (patch)
tree56901ce1b9d1cb35f05d3e059d2aca83319491ff /options/options.h
parent06828f71a134e0b880601665c0daea78e6523633 (diff)
downloadmpv-39e04e929483847a3e0722d86d53f69837ed99db.tar.bz2
mpv-39e04e929483847a3e0722d86d53f69837ed99db.tar.xz
options: deprecate 'lua' based options/dirs for 'script'
- --lua and --lua-opts change to --script and --script-opts - 'lua' default script dirs change to 'scripts' - DOCS updated - 'lua-settings' dir was _not_ modified The old lua-based names/dirs still work, but display a warning. Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'options/options.h')
-rw-r--r--options/options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/options/options.h b/options/options.h
index a2edf1bb79..21f7c100e6 100644
--- a/options/options.h
+++ b/options/options.h
@@ -59,8 +59,8 @@ typedef struct MPOpts {
int msg_time;
char **reset_options;
- char **lua_files;
- char **lua_opts;
+ char **script_files;
+ char **script_opts;
int lua_load_osc;
int lua_load_ytdl;
char *lua_ytdl_format;