overlays: use L1 and R1 to step by 10 in the save data list

This commit is contained in:
Megamouse 2019-05-17 00:08:15 +02:00
parent 32bdd8ef7b
commit edb1a32bb1
3 changed files with 15 additions and 7 deletions

View file

@ -129,6 +129,12 @@ namespace rsx
case pad_button::dpad_down:
m_list->select_next();
break;
case pad_button::L1:
m_list->select_previous(10);
break;
case pad_button::R1:
m_list->select_next(10);
break;
default:
LOG_TRACE(RSX, "[ui] Button %d pressed", (u8)button_press);
}