From 49165a4bac65c059fdf3d0b722fee8d8a6474609 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Wed, 24 Apr 2019 01:36:36 -0500 Subject: [PATCH] Change another unplug message --- DS4Windows/DS4Control/ScpUtil.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DS4Windows/DS4Control/ScpUtil.cs b/DS4Windows/DS4Control/ScpUtil.cs index 27316a2..a38144d 100644 --- a/DS4Windows/DS4Control/ScpUtil.cs +++ b/DS4Windows/DS4Control/ScpUtil.cs @@ -3177,7 +3177,8 @@ namespace DS4Windows OutputDevice tempOutDev = control.outputDevices[device]; if (tempOutDev != null) { - AppLogger.LogToGui("Unplug Controller #" + (device + 1), false); + string tempType = tempOutDev.GetDeviceType(); + AppLogger.LogToGui("Unplug " + tempType + " Controller #" + (device + 1), false); tempOutDev.Disconnect(); tempOutDev = null; control.outputDevices[device] = null;