From e9d6716a331cb3630fdb97e8cc1eeb7c31afad18 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Wed, 10 Jul 2024 21:03:59 +0200 Subject: [PATCH] Fix savestating being possible after movie has finished --- src/BizHawk.Client.Common/savestates/SavestateFile.cs | 9 ++------- src/BizHawk.Client.EmuHawk/MainForm.cs | 6 ++++++ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/BizHawk.Client.Common/savestates/SavestateFile.cs b/src/BizHawk.Client.Common/savestates/SavestateFile.cs index ef0e163613..104c09ca0d 100644 --- a/src/BizHawk.Client.Common/savestates/SavestateFile.cs +++ b/src/BizHawk.Client.Common/savestates/SavestateFile.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.Diagnostics; using System.IO; using System.Linq; @@ -91,13 +92,7 @@ namespace BizHawk.Client.Common bs.PutLump(BinaryStateLump.Input, tw => { - // TODO: this should not happen and no exception should be thrown here. - // Just make this noisy for now until the issue is fixed. - if (_movieSession.Movie.FrameCount < _emulator.Frame) - { - throw new InvalidOperationException( - $"Tried to create a savestate at frame {_emulator.Frame}, but only got a log of length {_movieSession.Movie.FrameCount}!"); - } + Debug.Assert(_movieSession.Movie.FrameCount >= _emulator.Frame); // this never should have been a core's responsibility tw.WriteLine("Frame {0}", _emulator.Frame); _movieSession.HandleSaveState(tw); diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index b26a154044..6e62db9c2d 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -4331,6 +4331,12 @@ namespace BizHawk.Client.EmuHawk return; } + if (MovieSession.Movie.IsFinished()) + { + OSD.AddMessage("Cannot savestate after movie end!"); + return; + } + try { new SavestateFile(Emulator, MovieSession, MovieSession.UserBag).Create(path, Config.Savestates);