Tastudio - fix annoying auto-restore bug where it would not set auto-restore position correctly the first time using it after an auto-restore usage earlier in the movie. This might have some regressions, needs testing by people who would know

This commit is contained in:
adelikat 2021-04-23 18:34:17 -05:00
parent 838f571e0b
commit aad592cc1c
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ namespace BizHawk.Client.Common
{
// todo: this isn't working quite right when autorestore is off and we're editing while seeking
// but accounting for that requires access to Mainform.IsSeeking
if (Emulator.Frame > LastEditedFrame)
if (Emulator.Frame != LastEditedFrame)
{
// emulated a new frame, current editing segment may change now. taseditor logic
LastPositionStable = false;