From 8e7c920ef0007bee84e8d2403b17def94b6a5b2c Mon Sep 17 00:00:00 2001 From: Michael Rennie Date: Wed, 9 Nov 2016 19:08:32 +0000 Subject: [PATCH] Fix error MessageBox when failing to copy to remote host. --- renderdocui/Windows/MainWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdocui/Windows/MainWindow.cs b/renderdocui/Windows/MainWindow.cs index 38e4cc66a..f90a795e0 100644 --- a/renderdocui/Windows/MainWindow.cs +++ b/renderdocui/Windows/MainWindow.cs @@ -827,7 +827,7 @@ namespace renderdocui.Windows } catch (Exception) { - MessageBox.Show("Couldn't copy " + filename + " to remote host for replaying", "Error copying to remote", + MessageBox.Show("Couldn't copy " + origFilename + " to remote host for replaying", "Error copying to remote", MessageBoxButtons.OK, MessageBoxIcon.Error); return; }