Rename another task

This commit is contained in:
twinaphex 2017-02-21 16:53:02 +01:00
parent d0e49a2d8f
commit 1ec7b79ad6
4 changed files with 5 additions and 9 deletions

View File

@ -1091,7 +1091,7 @@ static int generic_action_ok(const char *path,
flush_type = MENU_SETTINGS;
if (!task_push_content_load_nothing_with_new_core_from_menu(
if (!task_push_load_new_core(
action_path, NULL,
&content_info,
CORE_TYPE_PLAIN,

View File

@ -1247,7 +1247,7 @@ error:
return false;
}
bool task_push_content_load_nothing_with_new_core_from_menu(
bool task_push_load_new_core(
const char *core_path,
const char *fullpath,
content_ctx_info_t *content_info,

View File

@ -74,12 +74,8 @@ static void netplay_crc_scan_callback(void *task_data,
content_ctx_info_t content_info = {0};
command_event(CMD_EVENT_NETPLAY_INIT_DIRECT_DEFERRED, state->hostname);
task_push_content_load_nothing_with_new_core_from_menu(
state->core_path, NULL,
&content_info,
CORE_TYPE_PLAIN,
NULL, NULL);
task_push_load_new_core(state->core_path, NULL,
&content_info, CORE_TYPE_PLAIN, NULL, NULL);
task_push_start_current_core(&content_info);
}
else

View File

@ -138,7 +138,7 @@ bool task_push_decompress(
retro_task_callback_t cb,
void *user_data);
bool task_push_content_load_nothing_with_new_core_from_menu(
bool task_push_load_new_core(
const char *core_path,
const char *fullpath,
content_ctx_info_t *content_info,