mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 17:58:37 +12:00
overlays: use L1 and R1 to step by 10 in the save data list
This commit is contained in:
parent
32bdd8ef7b
commit
edb1a32bb1
3 changed files with 15 additions and 7 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue