Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Commit

Permalink
edge case fix for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
AtlasTheProto committed Nov 3, 2021
1 parent 7c7cfc7 commit 05acf89
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ADBForwarder/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ internal class Program

private static readonly string[] deviceNames =
{
"monterey", // Oculus Quest 1
"hollywood", // Oculus Quest 2
"pacific" // Oculus Go
"monterey", // Oculus Quest 1
"hollywood", // Oculus Quest 2
"pacific", // Oculus Go
"vr_monterey", // Edge case for linux, Quest 1
"vr_hollywood", // Edge case for linux, Oculus Quest 2
"vr_pacific" // Edge case for linux, Oculus Go
};

private static readonly AdbClient client = new AdbClient();
Expand Down

0 comments on commit 05acf89

Please sign in to comment.