Skip to content

Commit ec75498

Browse files
committed
Remove delay to let that be custom per script
1 parent 8c2dacc commit ec75498

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

OpenVRStartup/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ namespace OpenVRStartup
1111
{
1212
class Program
1313
{
14+
// TODO: Write log files of which command files we execute every launch.
15+
// TODO: If no log file, stop execution with instruction of SteamVR startup toggle.
16+
1417
static void Main(string[] args)
1518
{
1619
// Starting worker
@@ -41,15 +44,12 @@ private static void Worker()
4144
}
4245
else
4346
{
44-
Utils.Print("Waiting for 10 seconds...");
45-
Thread.Sleep(10000);
4647
RunScripts();
4748
OpenVR.Shutdown();
4849
shouldRun = false;
4950
}
5051
if (!shouldRun)
5152
{
52-
Thread.Sleep(5000);
5353
Environment.Exit(0);
5454
}
5555
}

0 commit comments

Comments
 (0)