mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 02:47:57 -05:00
settings: Fix Debug controller type options
This commit is contained in:
@ -166,9 +166,10 @@ void EmulatedConsole::SetTouch(Common::Input::CallbackStatus callback,
|
||||
return;
|
||||
}
|
||||
|
||||
// TODO(german77): Remap touch id in sequential order
|
||||
console.touch_state[index] = {
|
||||
.position = {console.touch_values[index].x.value, console.touch_values[index].y.value},
|
||||
.id = console.touch_values[index].id,
|
||||
.id = static_cast<u32>(console.touch_values[index].id),
|
||||
.pressed = console.touch_values[index].pressed.value,
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user