remove old dispose hack in MovieSession

no longer relevant since recent commits and didn't fail since the TasStateManager changes a while back anyway
This commit is contained in:
Morilli 2025-06-01 20:34:01 +02:00
parent 047e1556cb
commit 3c774e2607
1 changed files with 1 additions and 2 deletions

View File

@ -285,8 +285,7 @@ namespace BizHawk.Client.Common
_modeChangedCallback();
}
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
if (Movie is IDisposable d)
{
d.Dispose();
}