tastudio: fix infinite pasting loop

This commit is contained in:
feos 2016-10-09 16:21:01 +03:00
parent f52d8a526b
commit 0a554a984f
1 changed files with 38 additions and 2 deletions

View File

@ -409,7 +409,25 @@ namespace BizHawk.Client.EmuHawk
else
_tasClipboard.Add(new TasClipboardEntry(i, line));
}
PasteMenuItem_Click(sender, e); // pseudo recursion
var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
CurrentTasMovie.CopyOverInput(TasView.FirstSelectedIndex.Value, _tasClipboard.Select(x => x.ControllerState));
if (needsToRollback)
{
GoToLastEmulatedFrameIfNecessary(TasView.FirstSelectedIndex.Value);
if (wasPaused)
{
DoAutoRestore();
}
else
{
Mainform.UnpauseEmulator();
}
}
else
{
RefreshDialog();
}
}
}
}
@ -461,7 +479,25 @@ namespace BizHawk.Client.EmuHawk
else
_tasClipboard.Add(new TasClipboardEntry(i, line));
}
PasteInsertMenuItem_Click(sender, e); // pseudo recursion
var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
CurrentTasMovie.InsertInput(TasView.FirstSelectedIndex.Value, _tasClipboard.Select(x => x.ControllerState));
if (needsToRollback)
{
GoToLastEmulatedFrameIfNecessary(TasView.FirstSelectedIndex.Value);
if (wasPaused)
{
DoAutoRestore();
}
else
{
Mainform.UnpauseEmulator();
}
}
else
{
RefreshDialog();
}
}
}
}