From 11186dd5e05356a40cf1d61233cb10f6cc4b7fe4 Mon Sep 17 00:00:00 2001 From: psxdev Date: Thu, 3 Jan 2019 15:22:14 +0100 Subject: [PATCH] [ORBIS] Workaround weird behaviour with task with bg.png in xmb --- menu/drivers/xmb.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index e3604a42f5..654851b4ab 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -4976,6 +4976,11 @@ static void xmb_context_reset_background(const char *iconpath) task_push_image_load(path, menu_display_handle_wallpaper_upload, NULL); +#ifdef ORBIS + // to avoid weird behaviour on orbis with remote host + RARCH_LOG("[XMB] after task\n"); + sleep(5); +#endif if (path) free(path); }