diff --git a/renderdocui/Code/PersistantConfig.cs b/renderdocui/Code/PersistantConfig.cs index 6cfa59824..399c68ea3 100644 --- a/renderdocui/Code/PersistantConfig.cs +++ b/renderdocui/Code/PersistantConfig.cs @@ -54,6 +54,14 @@ namespace renderdocui.Code public void CheckStatus() { + // special case - this is the local context + if (Hostname == "localhost") + { + ServerRunning = false; + VersionMismatch = Busy = false; + return; + } + try { RemoteServer server = StaticExports.CreateRemoteServer(Hostname, 0);