When doing Save logic, also revert to Save As if project name matches the default name

This commit is contained in:
adelikat 2014-10-18 15:53:58 +00:00
parent ceb79a4c26
commit 32898f0584
1 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,8 @@ namespace BizHawk.Client.EmuHawk
private void SaveTasMenuItem_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(_currentTasMovie.Filename))
if (string.IsNullOrEmpty(_currentTasMovie.Filename) ||
_currentTasMovie.Filename == DefaultTasProjName())
{
SaveAsTasMenuItem_Click(sender, e);
}