mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-26 11:04:21 +01:00
More edits to program entry file
This commit is contained in:
parent
e86113f27b
commit
ffbcdb21b3
@ -2,7 +2,7 @@
|
||||
using System.Windows.Forms;
|
||||
using System.Threading;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Diagnostics;
|
||||
using Process = System.Diagnostics.Process;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using System.Runtime;
|
||||
@ -73,13 +73,10 @@ namespace DS4Windows
|
||||
|
||||
try
|
||||
{
|
||||
Process.GetCurrentProcess().PriorityClass =
|
||||
ProcessPriorityClass.High;
|
||||
}
|
||||
catch
|
||||
{
|
||||
// Ignore problems raising the priority.
|
||||
Process.GetCurrentProcess().PriorityClass =
|
||||
System.Diagnostics.ProcessPriorityClass.High;
|
||||
}
|
||||
catch { } // Ignore problems raising the priority.
|
||||
|
||||
try
|
||||
{
|
||||
@ -89,7 +86,7 @@ namespace DS4Windows
|
||||
threadComEvent.Close();
|
||||
return; // return immediatly.
|
||||
}
|
||||
catch { /* don't care about errors */ }
|
||||
catch { /* don't care about errors */ }
|
||||
|
||||
// Create the Event handle
|
||||
threadComEvent = new EventWaitHandle(false, EventResetMode.ManualReset, SingleAppComEventName);
|
||||
|
Loading…
Reference in New Issue
Block a user