Increase Steam launcher wait time

This commit is contained in:
Jaex 2018-04-30 11:22:49 +03:00
parent 54ff8458f7
commit e869a56896

View file

@ -64,7 +64,7 @@ public static void Run(string[] args)
// If running on startup and need to show "In-app" then wait until Steam is open
if (IsStartupRun && ShowInApp)
{
for (int i = 0; i < 10 && !SteamAPI.IsSteamRunning(); i++)
for (int i = 0; i < 20 && !SteamAPI.IsSteamRunning(); i++)
{
Thread.Sleep(1000);
}