mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-12-26 16:41:50 +01:00
Added extra log message when ViGEmBus is not detected
This commit is contained in:
parent
9a5d4c1f63
commit
8a6aae2b42
@ -550,7 +550,16 @@ namespace DS4Windows
|
||||
}
|
||||
else
|
||||
{
|
||||
string logMessage = "Could not connect to ViGEmBus. Please check the status of the System device in Device Manager and if Visual C++ 2017 Redistributable is installed.";
|
||||
string logMessage = string.Empty;
|
||||
if (!vigemInstalled)
|
||||
{
|
||||
logMessage = "ViGEmBus is not installed";
|
||||
}
|
||||
else
|
||||
{
|
||||
logMessage = "Could not connect to ViGEmBus. Please check the status of the System device in Device Manager and if Visual C++ 2017 Redistributable is installed.";
|
||||
}
|
||||
|
||||
LogDebug(logMessage);
|
||||
AppLogger.LogToTray(logMessage);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user