From b1c2ed0d3d9893c94f4ed67892f0bf1eb1984e7e Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 13 Jun 2020 14:29:43 -0500 Subject: [PATCH] set movie = null on stop movie, this used to crash tastudio but I can't make it crash anymore, either we fixed the underlying problem or I didn't reproduce it correctly, will fix if it comes up --- src/BizHawk.Client.Common/movie/MovieSession.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/MovieSession.cs b/src/BizHawk.Client.Common/movie/MovieSession.cs index c123821651..4275d95255 100644 --- a/src/BizHawk.Client.Common/movie/MovieSession.cs +++ b/src/BizHawk.Client.Common/movie/MovieSession.cs @@ -281,9 +281,7 @@ namespace BizHawk.Client.Common _modeChangedCallback(); } - // TODO: we aren't ready for this line, keeping the old movie hanging around masks a lot of Tastudio problems - // Uncommenting this can cause drawing crashes in tastudio since it depends on a ITasMovie and doesn't have one between closing and opening a rom - //Movie = null; + Movie = null; } public void ConvertToTasProj()