mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-11 10:53:52 +02:00
Detect WiVRn when looking for if VR is running (#1212)
This commit is contained in:
@@ -50,7 +50,7 @@ namespace VRCX
|
||||
var processes = Process.GetProcesses();
|
||||
foreach (var process in processes)
|
||||
{
|
||||
if (process.ProcessName == "vrmonitor" || process.ProcessName == "monado-service")
|
||||
if (process.ProcessName == "vrmonitor" || process.ProcessName == "monado-service" || process.ProcessName.EndsWith("wivrn-server"))
|
||||
{
|
||||
isSteamVRRunning = true;
|
||||
break;
|
||||
@@ -120,4 +120,4 @@ namespace VRCX
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user