hack to fix Tastudio loading when importing an existing bk2

This commit is contained in:
adelikat 2020-08-29 18:14:49 -05:00
parent 7e99989746
commit 9db5ee2e7b
1 changed files with 2 additions and 1 deletions

View File

@ -277,7 +277,8 @@ namespace BizHawk.Client.Common
_modeChangedCallback();
}
if (Movie is IDisposable d)
if (Movie is IDisposable d
&& Movie != _queuedMovie) // Uberhack, remove this and Loading Tastudio with a bk2 already loaded breaks, probably other TAStudio scenarios as well
{
d.Dispose();
}