mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
Added log notifications when using Load Profile special action
It now seems doable speed wise. Related to issue #540.
This commit is contained in:
parent
ac6116ea3d
commit
9dc23ebfc4
@ -1841,6 +1841,9 @@ namespace DS4Windows
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
string prolog = Properties.Resources.UsingProfile.Replace("*number*", (device + 1).ToString()).Replace("*Profile name*", action.details);
|
||||
AppLogger.LogToGui(prolog, false);
|
||||
LoadTempProfile(device, action.details, true, ctrl);
|
||||
return;
|
||||
}
|
||||
@ -2209,6 +2212,8 @@ namespace DS4Windows
|
||||
}
|
||||
|
||||
untriggeraction[device] = null;
|
||||
string prolog = Properties.Resources.UsingProfile.Replace("*number*", (device + 1).ToString()).Replace("*Profile name*", ProfilePath[device]);
|
||||
AppLogger.LogToGui(prolog, false);
|
||||
LoadProfile(device, false, ctrl);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user