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);