Fix for DS4 failing to connect for some people

This commit is contained in:
jays2kings 2014-07-27 22:54:58 -04:00
parent a53869f2a4
commit 09ef2dd8c4
2 changed files with 4 additions and 5 deletions

View File

@ -5,7 +5,6 @@ using System.Text;
using DS4Library;
using System.IO;
using System.Reflection;
using System.Diagnostics;
namespace DS4Control
{
public class Control
@ -210,7 +209,7 @@ namespace DS4Control
{
if (Global.getLaunchProgram(ind) != string.Empty)
{
Process.Start(Global.getLaunchProgram(ind));
System.Diagnostics.Process.Start(Global.getLaunchProgram(ind));
}
}
public void TouchPadOn(int ind, DS4Device device)
@ -224,7 +223,7 @@ namespace DS4Control
device.Touchpad.TouchUnchanged += tPad.touchUnchanged;
//LogDebug("Touchpad mode for " + device.MacAddress + " is now " + tmode.ToString());
//Log.LogToTray("Touchpad mode for " + device.MacAddress + " is now " + tmode.ToString());
//Global.ControllerStatusChanged(this);
Global.ControllerStatusChanged(this);
}
public void TimeoutConnection(DS4Device d)

View File

@ -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.0.2")]
[assembly: AssemblyFileVersion("1.4.0.2")]
[assembly: AssemblyVersion("1.4.0.22")]
[assembly: AssemblyFileVersion("1.4.0.22")]