This commit is contained in:
twinaphex 2021-03-12 01:56:59 +01:00
parent f7f6f3c5d5
commit 4d3f8c3c80

View File

@ -1858,8 +1858,7 @@ static int generic_menu_iterate(
menu->menu_state_msg[0] = '\0';
iterate_type = action_iterate_type(label);
p_rarch->menu_driver_is_binding = iterate_type == ITERATE_TYPE_BIND;
p_rarch->menu_driver_is_binding = false;
if ( action != MENU_ACTION_NOOP
|| MENU_ENTRIES_NEEDS_REFRESH(menu_st)
@ -1867,6 +1866,7 @@ static int generic_menu_iterate(
{
BIT64_SET(menu->state, MENU_STATE_RENDER_FRAMEBUFFER);
}
switch (iterate_type)
{
case ITERATE_TYPE_HELP:
@ -1901,6 +1901,8 @@ static int generic_menu_iterate(
{
menu_input_ctx_bind_t bind;
p_rarch->menu_driver_is_binding = true;
bind.s = menu->menu_state_msg;
bind.len = sizeof(menu->menu_state_msg);