mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Don't validate existance of working directories on remote captures
This commit is contained in:
@@ -287,8 +287,17 @@ namespace renderdocui.Windows.Dialogs
|
||||
}
|
||||
|
||||
string workingDir = "";
|
||||
if (Directory.Exists(RealWorkDir))
|
||||
|
||||
// for non-remote captures, check the directory locally
|
||||
if (m_Core.Renderer.Remote == null)
|
||||
{
|
||||
if (Directory.Exists(RealWorkDir))
|
||||
workingDir = RealWorkDir;
|
||||
}
|
||||
else
|
||||
{
|
||||
workingDir = RealWorkDir;
|
||||
}
|
||||
|
||||
string cmdLine = cmdline.Text;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user