FIx a nasty bug in bk2 and tasmovie that was saving a movie even if it was inactive

This commit is contained in:
adelikat 2014-08-24 18:07:14 +00:00
parent 227f5d6b53
commit 06605346e0
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ namespace BizHawk.Client.Common
{
if (saveChanges)
{
if (_mode == Moviemode.Record || Changes)
if (_mode == Moviemode.Record || (IsActive && Changes))
{
Save();
}