Skip to content

Commit

Permalink
Show USB help text according to the current OS
Browse files Browse the repository at this point in the history
  • Loading branch information
exelix11 committed Jan 4, 2024
1 parent 7afc841 commit 0971a91
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Client/GUI/UsbDevicesView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ public override void Draw()

if (Program.IsWindows)
ImGui.TextWrapped("The first time you run SysDVR on Windows you must install the USB driver, follow the guide.");
else if (Program.IsLinux)
ImGui.TextWrapped("To properly use USB mode on Linux you need to install the needed udev rule according to the guide");
else if (Program.IsAndroid)
ImGui.TextWrapped("In case of issues make sure your device supports USB OTG, note that certain USB C to C cables are known to cause issues, try with a OTG adapter on your phone USB port");
}
else
{
Expand Down

0 comments on commit 0971a91

Please sign in to comment.