Tastudio - fix obvious mouse up typo, if we are going to invalidate from _paintingMinFrame, then we should compare against it, fixes #2351
This commit is contained in:
parent
e46de9e5c3
commit
33b1bdfcae
|
@ -843,7 +843,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
// If painting up, we have altered frames without loading states (for smoothness)
|
||||
// So now we have to ensure that all the edited frames are invalidated
|
||||
if (CurrentTasMovie.LastEditedFrame < Emulator.Frame)
|
||||
if (_paintingMinFrame < Emulator.Frame)
|
||||
{
|
||||
GoToFrame(_paintingMinFrame);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue