From d1d97e9d9d337f55963e29b2525dd833caed90e0 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 7 Jan 2017 18:13:52 +0100 Subject: [PATCH] Set shader pipeline to wallpaper mode when setting a menu wallpaper --- menu/cbs/menu_cbs_ok.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index 42abd9ae79..2286b550e2 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -1652,7 +1652,11 @@ static int action_ok_menu_wallpaper(const char *path, static int action_ok_menu_wallpaper_load(const char *path, const char *label, unsigned type, size_t idx, size_t entry_idx) { + settings_t *settings = config_get_ptr(); + filebrowser_clear_type(); + + settings->menu.xmb.shader_pipeline = XMB_SHADER_PIPELINE_WALLPAPER; return generic_action_ok(path, label, type, idx, entry_idx, ACTION_OK_LOAD_WALLPAPER, MSG_UNKNOWN); }