mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2025-01-13 00:29:09 +01:00
Version 1.4.261
Fixed mouse movement by touchpad not working
This commit is contained in:
parent
5945185fbc
commit
39cf56c71a
@ -33,7 +33,7 @@ namespace DS4Windows
|
|||||||
private byte lastTouchID;
|
private byte lastTouchID;
|
||||||
public void touchesMoved(TouchpadEventArgs arg, bool dragging)
|
public void touchesMoved(TouchpadEventArgs arg, bool dragging)
|
||||||
{
|
{
|
||||||
if ((!dragging && arg.touches.Length != 0) || (dragging && arg.touches.Length < 1))
|
if ((!dragging && arg.touches.Length != 1) || (dragging && arg.touches.Length < 1))
|
||||||
return;
|
return;
|
||||||
int deltaX, deltaY;
|
int deltaX, deltaY;
|
||||||
if (arg.touches[0].touchID != lastTouchID)
|
if (arg.touches[0].touchID != lastTouchID)
|
||||||
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.4.26")]
|
[assembly: AssemblyVersion("1.4.261")]
|
||||||
[assembly: AssemblyFileVersion("1.4.26")]
|
[assembly: AssemblyFileVersion("1.4.261")]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user