omit autosaving if we have the default project name

close #1599
This commit is contained in:
feos 2019-11-20 20:04:03 +03:00
parent 2fbf3c3b19
commit b70c49892c
1 changed files with 2 additions and 1 deletions

View File

@ -145,7 +145,8 @@ namespace BizHawk.Client.EmuHawk
return;
}
if (!CurrentTasMovie.Changes || Settings.AutosaveInterval == 0)
if (!CurrentTasMovie.Changes || Settings.AutosaveInterval == 0
|| CurrentTasMovie.Filename == DefaultTasProjName())
{
return;
}