mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-12-24 15:41:49 +01:00
Minor tweak to remove unneeded string
This commit is contained in:
parent
20962895b0
commit
b24c72f559
@ -182,8 +182,8 @@ namespace DS4Windows
|
||||
private void DS4Devices_RequestElevation(RequestElevationArgs args)
|
||||
{
|
||||
// Launches an elevated child process to re-enable device
|
||||
string exeName = Global.exelocation;
|
||||
ProcessStartInfo startInfo = new ProcessStartInfo(exeName);
|
||||
ProcessStartInfo startInfo =
|
||||
new ProcessStartInfo(Global.exelocation);
|
||||
startInfo.Verb = "runas";
|
||||
startInfo.Arguments = "re-enabledevice " + args.InstanceId;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user