From 07fd511e143f8fd17d9e662ca0c060527c29e0e1 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 10 Nov 2019 23:53:57 +0100 Subject: options: remove M_SETOPT_RUNTIME Used to contain flags for "save" setting of options at runtime. Now there is nothing special needed anymore and it's 0. So drop it completely, and remove anything that distinguishes between runtime and initialization time. --- player/loadfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player/loadfile.c') diff --git a/player/loadfile.c b/player/loadfile.c index 747793b645..09b7167f60 100644 --- a/player/loadfile.c +++ b/player/loadfile.c @@ -973,7 +973,7 @@ static void load_per_file_options(m_config_t *conf, { for (int n = 0; n < params_count; n++) { m_config_set_option_cli(conf, params[n].name, params[n].value, - M_SETOPT_RUNTIME | M_SETOPT_BACKUP); + M_SETOPT_BACKUP); } } -- cgit v1.2.3