mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-06 14:25:39 +00:00
UWP: Map mouse buttons to match Qt
This commit is contained in:
parent
134056bb93
commit
5396a5513d
|
@ -657,7 +657,7 @@ void UWPHostInterface::UpdateMouseButtonState(const winrt::Windows::UI::Input::P
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
io.MouseDown[i] = states[i];
|
io.MouseDown[i] = states[i];
|
||||||
HandleHostMouseEvent(static_cast<HostMouseButton>(i), states[i]);
|
HandleHostMouseEvent(static_cast<HostMouseButton>(i + 1u), states[i]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue