When doing Save logic, also revert to Save As if project name matches the default name
This commit is contained in:
parent
ceb79a4c26
commit
32898f0584
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue