diff --git a/qrenderdoc/Code/Interface/PersistantConfig.cpp b/qrenderdoc/Code/Interface/PersistantConfig.cpp index 7bee7649a..fbcfb8ee7 100644 --- a/qrenderdoc/Code/Interface/PersistantConfig.cpp +++ b/qrenderdoc/Code/Interface/PersistantConfig.cpp @@ -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);