mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
Fix check for legacy adb devices
This commit is contained in:
@@ -377,7 +377,7 @@ bool PersistantConfig::Load(const rdcstr &filename)
|
||||
continue;
|
||||
|
||||
// backwards compatibility - skip old adb hosts that were adb:
|
||||
if(host.Hostname().find("adb:") > 0 && host.Protocol() == NULL)
|
||||
if(host.Hostname().find("adb:") >= 0 && host.Protocol() == NULL)
|
||||
continue;
|
||||
|
||||
RemoteHostList.push_back(host);
|
||||
|
||||
Reference in New Issue
Block a user