From d7fcdc4285c8999a062733531b23a896a5718317 Mon Sep 17 00:00:00 2001 From: baldurk Date: Sat, 14 May 2016 00:27:26 +0200 Subject: [PATCH] Don't #ifdef ANDROID creating RemoteAccessServerThread. * Will need to see what the reason for this was, and either fix or find better way around. --- renderdoc/core/core.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/renderdoc/core/core.cpp b/renderdoc/core/core.cpp index e641c42dd..9cdbb235d 100644 --- a/renderdoc/core/core.cpp +++ b/renderdoc/core/core.cpp @@ -220,11 +220,7 @@ void RenderDoc::Initialise() m_RemoteIdent = port; m_RemoteServerThreadShutdown = false; -#ifdef ANDROID - // TODO shutdown the thread on dlclose() -#else m_RemoteThread = Threading::CreateThread(RemoteAccessServerThread, (void *)sock); -#endif } }