Fix left/right presses

This commit is contained in:
twinaphex 2016-07-10 13:51:40 +02:00
parent eb37e95cca
commit 71d25c779a
2 changed files with 8 additions and 0 deletions

View File

@ -478,6 +478,10 @@ static int menu_cbs_init_bind_left_compare_label(menu_file_list_cbs_t *cbs,
}
}
else
{
return -1;
}
}
return 0;

View File

@ -583,6 +583,10 @@ static int menu_cbs_init_bind_right_compare_label(menu_file_list_cbs_t *cbs,
return -1;
}
}
else
{
return -1;
}
}
return 0;