diff --git a/DS4Windows/DS4Control/Mapping.cs b/DS4Windows/DS4Control/Mapping.cs index c6840ab..55e7c45 100644 --- a/DS4Windows/DS4Control/Mapping.cs +++ b/DS4Windows/DS4Control/Mapping.cs @@ -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); } }