mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-12-25 08:01:49 +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;
|
||||
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;
|
||||
int deltaX, deltaY;
|
||||
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
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.4.26")]
|
||||
[assembly: AssemblyFileVersion("1.4.26")]
|
||||
[assembly: AssemblyVersion("1.4.261")]
|
||||
[assembly: AssemblyFileVersion("1.4.261")]
|
||||
|
Loading…
Reference in New Issue
Block a user