mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(PS3) Should get playlist entries working again - now we need to
propagate the core path to the playlist correctly
This commit is contained in:
parent
aae99faf12
commit
282dbf0b38
2 changed files with 8 additions and 0 deletions
|
@ -1935,7 +1935,9 @@ bool command_event(enum event_command cmd, void *data)
|
|||
{
|
||||
case CMD_EVENT_QUIT:
|
||||
runloop_ctl(RUNLOOP_CTL_SET_SHUTDOWN, NULL);
|
||||
#ifdef HAVE_MENU
|
||||
rarch_ctl(RARCH_CTL_MENU_RUNNING_FINISHED, NULL);
|
||||
#endif
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
|
@ -1835,6 +1835,12 @@ bool task_push_content_load_default(
|
|||
case CONTENT_MODE_LOAD_CONTENT_FROM_PLAYLIST_FROM_MENU:
|
||||
if (!command_event_cmd_exec((void*)fullpath))
|
||||
return false;
|
||||
#ifndef HAVE_DYNAMIC
|
||||
runloop_ctl(RUNLOOP_CTL_SET_SHUTDOWN, NULL);
|
||||
#ifdef HAVE_MENU
|
||||
rarch_ctl(RARCH_CTL_MENU_RUNNING_FINISHED, NULL);
|
||||
#endif
|
||||
#endif
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue