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:
adelikat 2020-08-30 11:36:17 -05:00
parent e46de9e5c3
commit 33b1bdfcae
1 changed files with 1 additions and 1 deletions

View File

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