mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-26 08:37:55 -05:00
UI: Relocate tas menu and add brief description
This commit is contained in:
@ -78,7 +78,7 @@ void ControllerDialog::InputController(ControllerInput input) {
|
||||
u32 buttons = 0;
|
||||
int index = 0;
|
||||
for (bool btn : input.button_values) {
|
||||
buttons += (btn ? 1 : 0) << index;
|
||||
buttons |= (btn ? 1U : 0U) << index;
|
||||
index++;
|
||||
}
|
||||
input_subsystem->GetTas()->RecordInput(buttons, input.axis_values);
|
||||
|
Reference in New Issue
Block a user