mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-28 02:30:35 +00:00
task content: Display OSD loading message prior to loading content
This commit is contained in:
parent
2a883caf17
commit
2f23781cfd
@ -1607,9 +1607,6 @@ static bool task_load_content(content_ctx_info_t *content_info,
|
||||
}
|
||||
#endif
|
||||
|
||||
if (!content_load(content_info))
|
||||
goto error;
|
||||
|
||||
if (launched_from_menu)
|
||||
{
|
||||
/** Show loading OSD message */
|
||||
@ -1621,7 +1618,10 @@ static bool task_load_content(content_ctx_info_t *content_info,
|
||||
runloop_msg_queue_push(msg, 2, 1, true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (!content_load(content_info))
|
||||
goto error;
|
||||
|
||||
/* Push entry to top of history playlist */
|
||||
if (content_is_inited() || content_does_not_need_content())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user