mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-07-03 16:20:47 -07: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