fix an NRE I caused in movie code. The old code was wrong, this one is better

This commit is contained in:
adelikat 2020-06-05 20:10:20 -05:00
parent 8303321586
commit 863d022bc5
2 changed files with 5 additions and 2 deletions

View File

@ -267,6 +267,8 @@ namespace BizHawk.Client.Common
{
Movie.StartNewPlayback();
}
MultiTrack.Restart(emulator.ControllerDefinition.PlayerCount);
}
public void ToggleMultitrack()
@ -310,6 +312,8 @@ namespace BizHawk.Client.Common
message += "stopped.";
MultiTrack.Restart(1);
var result = Movie.Stop(saveChanges);
if (result)
{
@ -319,7 +323,6 @@ namespace BizHawk.Client.Common
Output(message);
ReadOnly = true;
MultiTrack.Restart(Movie.Emulator.ControllerDefinition.PlayerCount);
_modeChangedCallback();
}

View File

@ -39,7 +39,7 @@ namespace BizHawk.Client.Common
int? stateFrame = null;
// We are in record mode so replace the movie log with the one from the savestate
if (!Global.MovieSession.MultiTrack.IsActive) // TODO: this is run before being attached
if (!Session.MultiTrack.IsActive)
{
if (Global.Config.Movies.EnableBackupMovies && MakeBackup && Log.Count != 0)
{