mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-04 05:41:06 +00:00
Fix linux launching of adb server
This commit is contained in:
@@ -344,7 +344,8 @@ void initAdb()
|
||||
Process::ProcessResult res = {};
|
||||
Process::LaunchProcess(adb.c_str(), workdir.c_str(), "start-server", true, &res);
|
||||
|
||||
if(res.strStdout.find("daemon") != std::string::npos)
|
||||
if(res.strStdout.find("daemon") != std::string::npos ||
|
||||
res.strStderror.find("daemon") != std::string::npos)
|
||||
{
|
||||
RDCLOG("Started adb server");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user