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:
parent
838f571e0b
commit
aad592cc1c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue