Ram Watch - Save As should set currentPath

This commit is contained in:
andres.delikat 2011-01-21 19:22:25 +00:00
parent 0f210c634a
commit 15db7a1062
1 changed files with 3 additions and 0 deletions

View File

@ -408,7 +408,10 @@ namespace BizHawk.MultiClient
{
var file = GetSaveFileFromUser();
if (file != null)
{
SaveWatchFile(file.FullName);
currentWatchFile = file.FullName;
}
MessageLabel.Text = Path.GetFileName(currentWatchFile) + " saved.";
}