TasMovie.RecordFrame() - duplicate desired base class logic instead of calling base, because base does some "VBAStyleLoadState" stuff that is very undesireable in tastudio

This commit is contained in:
adelikat 2020-05-25 16:47:23 -05:00
parent 472a954da0
commit 5e4983c93f
1 changed files with 4 additions and 1 deletions

View File

@ -16,7 +16,10 @@ namespace BizHawk.Client.Common
ChangeLog.AddGeneralUndo(frame - 1, frame - 1, $"Record Frame: {frame}");
}
base.RecordFrame(frame, source);
var lg = LogGeneratorInstance(source);
SetFrameAt(frame, lg.GenerateLogEntry());
Changes = true;
LagLog.RemoveFrom(frame);
LagLog[frame] = _inputPollable.IsLagFrame;