(PS3) Should get playlist entries working again - now we need to

propagate the core path to the playlist correctly
This commit is contained in:
twinaphex 2016-07-23 07:47:05 +02:00
parent aae99faf12
commit 282dbf0b38
2 changed files with 8 additions and 0 deletions

View File

@ -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;

View File

@ -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;