Cleanups
This commit is contained in:
parent
85e0ab9a8e
commit
788951958c
|
@ -648,7 +648,8 @@ bool menu_driver_ctl(enum rarch_menu_ctl_state state, void *data)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (menu_driver_ctx->navigation_ascend_alphabet)
|
if (menu_driver_ctx->navigation_ascend_alphabet)
|
||||||
menu_driver_ctx->navigation_ascend_alphabet(menu_userdata, ptr_out);
|
menu_driver_ctx->navigation_ascend_alphabet(
|
||||||
|
menu_userdata, ptr_out);
|
||||||
}
|
}
|
||||||
case RARCH_MENU_CTL_NAVIGATION_DESCEND_ALPHABET:
|
case RARCH_MENU_CTL_NAVIGATION_DESCEND_ALPHABET:
|
||||||
{
|
{
|
||||||
|
@ -658,7 +659,8 @@ bool menu_driver_ctl(enum rarch_menu_ctl_state state, void *data)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (menu_driver_ctx->navigation_descend_alphabet)
|
if (menu_driver_ctx->navigation_descend_alphabet)
|
||||||
menu_driver_ctx->navigation_descend_alphabet(menu_userdata, ptr_out);
|
menu_driver_ctx->navigation_descend_alphabet(
|
||||||
|
menu_userdata, ptr_out);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case RARCH_MENU_CTL_NAVIGATION_CLEAR:
|
case RARCH_MENU_CTL_NAVIGATION_CLEAR:
|
||||||
|
@ -668,7 +670,8 @@ bool menu_driver_ctl(enum rarch_menu_ctl_state state, void *data)
|
||||||
if (!pending_push)
|
if (!pending_push)
|
||||||
return false;
|
return false;
|
||||||
if (menu_driver_ctx->navigation_clear)
|
if (menu_driver_ctx->navigation_clear)
|
||||||
menu_driver_ctx->navigation_clear(menu_userdata, pending_push);
|
menu_driver_ctx->navigation_clear(
|
||||||
|
menu_userdata, pending_push);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case RARCH_MENU_CTL_POPULATE_ENTRIES:
|
case RARCH_MENU_CTL_POPULATE_ENTRIES:
|
||||||
|
@ -679,7 +682,8 @@ bool menu_driver_ctl(enum rarch_menu_ctl_state state, void *data)
|
||||||
return false;
|
return false;
|
||||||
if (menu_driver_ctx->populate_entries)
|
if (menu_driver_ctx->populate_entries)
|
||||||
menu_driver_ctx->populate_entries(
|
menu_driver_ctx->populate_entries(
|
||||||
menu_userdata, info->path, info->label, info->type);
|
menu_userdata, info->path,
|
||||||
|
info->label, info->type);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case RARCH_MENU_CTL_LIST_CLEAR:
|
case RARCH_MENU_CTL_LIST_CLEAR:
|
||||||
|
@ -725,7 +729,7 @@ bool menu_driver_ctl(enum rarch_menu_ctl_state state, void *data)
|
||||||
break;
|
break;
|
||||||
case RARCH_MENU_CTL_LIST_SET_SELECTION:
|
case RARCH_MENU_CTL_LIST_SET_SELECTION:
|
||||||
{
|
{
|
||||||
file_list_t *list = (file_list_t*)data;
|
file_list_t *list = (file_list_t*)data;
|
||||||
|
|
||||||
if (!list)
|
if (!list)
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue