Rename event_cmd_ctl to command_event

This commit is contained in:
twinaphex 2016-05-09 20:20:50 +02:00
parent 3c74031c2f
commit a98ef36d36
34 changed files with 181 additions and 181 deletions

View file

@ -35,7 +35,7 @@ bool rarch_task_push_content_load_default(
if (core_path)
{
runloop_ctl(RUNLOOP_CTL_SET_LIBRETRO_PATH, (void*)core_path);
event_cmd_ctl(EVENT_CMD_LOAD_CORE, NULL);
command_event(EVENT_CMD_LOAD_CORE, NULL);
}
if (fullpath)
@ -60,7 +60,7 @@ bool rarch_task_push_content_load_default(
}
if (cmd != EVENT_CMD_NONE)
event_cmd_ctl(cmd, NULL);
command_event(cmd, NULL);
#ifdef HAVE_MENU
menu_driver_ctl(RARCH_MENU_CTL_SET_PENDING_QUIT, NULL);