From c1f46dbbe9a9b2d1ae6694118244bea8859ab2f0 Mon Sep 17 00:00:00 2001 From: Ricardo Constantino Date: Fri, 30 Jun 2017 14:53:33 +0100 Subject: scripting: add wrapper to load scripts with user paths Fixes regression since b2f756c80e, which broke load-script command when used with user paths (ex: ~~/script.lua) --- player/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player/command.c') diff --git a/player/command.c b/player/command.c index b83196c677..560fc1dadc 100644 --- a/player/command.c +++ b/player/command.c @@ -5643,7 +5643,7 @@ int run_command(struct MPContext *mpctx, struct mp_cmd *cmd, struct mpv_node *re case MP_CMD_LOAD_SCRIPT: { char *script = cmd->args[0].v.s; - if (mp_load_script(mpctx, script) < 0) + if (mp_load_user_script(mpctx, script) < 0) return -1; break; } -- cgit v1.2.3