From 3569857b7580f9037f5168a2e3888a86cc3a85a0 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 21 May 2018 15:49:19 +0200 Subject: path: don't access global option struct The path functions need to access the option that forces non-default config directories. Just add it as a field to mpv_global - it seems justified. The accessed options were always enforced as immutable after init, so there's not much of a change. --- player/main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'player') diff --git a/player/main.c b/player/main.c index 5870574844..d94b61230e 100644 --- a/player/main.c +++ b/player/main.c @@ -338,6 +338,7 @@ int mp_initialize(struct MPContext *mpctx, char **options) if (options) m_config_preparse_command_line(mpctx->mconfig, mpctx->global, options); + mp_init_paths(mpctx->global, opts); mp_update_logging(mpctx, true); if (options) { -- cgit v1.2.3