Ram Watch - show "saved" message when doing Save, not just SaveAs

This commit is contained in:
andres.delikat 2011-06-26 18:56:56 +00:00
parent 685a500cc5
commit ec7e4123fd
1 changed files with 3 additions and 0 deletions

View File

@ -639,7 +639,10 @@ namespace BizHawk.MultiClient
if (string.Compare(currentWatchFile, "") == 0) return;
if (changes)
{
SaveWatchFile(currentWatchFile);
MessageLabel.Text = Path.GetFileName(currentWatchFile) + " saved.";
}
}
private FileInfo GetSaveFileFromUser()