From fa56e74181d3bd550f79dafdfe8186f5b7c556a3 Mon Sep 17 00:00:00 2001 From: baldurk Date: Wed, 28 Aug 2019 12:15:27 +0100 Subject: [PATCH] Increase the wait after starting android remote server * No surprise here, Android is bad so it takes ages after starting the program before it is actually running. --- renderdoc/android/android.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdoc/android/android.cpp b/renderdoc/android/android.cpp index 6c2390e3d..77edfcc9e 100644 --- a/renderdoc/android/android.cpp +++ b/renderdoc/android/android.cpp @@ -875,7 +875,7 @@ struct AndroidController : public IDeviceProtocolHandler }); // allow the package to start and begin listening before we return - Threading::Sleep(500); + Threading::Sleep(1500); return status; }