TasMovie - fix stop movie, if there were no changes to the movie file it was IGNORING the request to stop, that was bad and was the cause of various subtle oddities

This commit is contained in:
adelikat 2014-10-18 15:17:49 +00:00
parent cfd756feb0
commit e1b0544668
1 changed files with 1 additions and 6 deletions

View File

@ -64,12 +64,7 @@ namespace BizHawk.Client.Common
public override bool Stop(bool saveChanges = true)
{
if (Changes)
{
return base.Stop(saveChanges);
}
return false;
return base.Stop(saveChanges);
}
#region Events and Handlers