mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Allow scrolling left/right on 'No items' item
This commit is contained in:
parent
4e037cbe68
commit
7ea15e217f
2 changed files with 6 additions and 2 deletions
|
@ -483,8 +483,10 @@ static int menu_cbs_init_bind_left_compare_label(menu_file_list_cbs_t *cbs,
|
|||
)
|
||||
{
|
||||
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
|
||||
break;
|
||||
}
|
||||
else
|
||||
BIND_ACTION_LEFT(cbs, action_left_scroll);
|
||||
break;
|
||||
case MENU_ENUM_LABEL_START_VIDEO_PROCESSOR:
|
||||
case MENU_ENUM_LABEL_TAKE_SCREENSHOT:
|
||||
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)) ||
|
||||
|
|
|
@ -596,8 +596,10 @@ static int menu_cbs_init_bind_right_compare_label(menu_file_list_cbs_t *cbs,
|
|||
)
|
||||
{
|
||||
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
|
||||
break;
|
||||
}
|
||||
else
|
||||
BIND_ACTION_RIGHT(cbs, action_right_scroll);
|
||||
break;
|
||||
case MENU_ENUM_LABEL_START_VIDEO_PROCESSOR:
|
||||
case MENU_ENUM_LABEL_TAKE_SCREENSHOT:
|
||||
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)) ||
|
||||
|
|
Loading…
Add table
Reference in a new issue