Don't print Running standalone message when local server connection succeeds

This commit is contained in:
Adam Honse
2021-05-23 23:22:46 -05:00
parent 707df85d1f
commit cb656ebdf7
3 changed files with 11 additions and 1 deletions

View File

@@ -241,7 +241,11 @@ int main(int argc, char* argv[])
\*---------------------------------------------------------*/
if(!(ret_flags & RET_FLAG_NO_DETECT))
{
printf("Running standalone.\r\n");
if(ResourceManager::get()->GetDetectionEnabled())
{
printf("Running standalone.\r\n");
}
ResourceManager::get()->DetectDevices();
}