FIx a nasty bug in bk2 and tasmovie that was saving a movie even if it was inactive
This commit is contained in:
parent
227f5d6b53
commit
06605346e0
|
@ -59,7 +59,7 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
if (saveChanges)
|
||||
{
|
||||
if (_mode == Moviemode.Record || Changes)
|
||||
if (_mode == Moviemode.Record || (IsActive && Changes))
|
||||
{
|
||||
Save();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue