Fix for crash if frame capture is queued & process fails to create

This commit is contained in:
baldurk
2014-09-25 08:20:47 +01:00
parent aaaf9ae908
commit 3bc3f7a902
+1 -1
View File
@@ -254,7 +254,7 @@ namespace renderdocui.Windows.Dialogs
var live = m_CaptureCallback(exe, workingDir, cmdLine, GetSettings().Options);
if (queueFrameCap.Checked)
if (queueFrameCap.Checked && live != null)
live.QueueCapture((int)queuedCapFrame.Value);
}