tastudio: keep track of rerecords, increment them in InvalidateAfter()

markers: fix input roll context menu command removing Markers
gpgx: updated dll
This commit is contained in:
feos 2015-07-09 00:48:04 +03:00
parent ea9acdbe8d
commit 53c415a843
3 changed files with 2 additions and 1 deletions

View File

@ -168,6 +168,7 @@ namespace BizHawk.Client.Common
LagLog.RemoveFrom(frame);
StateManager.Invalidate(frame + 1);
Changes = true; // TODO check if this actually removed anything before flagging changes
base.Rerecords++;
}
/// <summary>

View File

@ -580,7 +580,7 @@ namespace BizHawk.Client.EmuHawk
private void RemoveMarkersMenuItem_Click(object sender, EventArgs e)
{
IEnumerable<TasMovieMarker> markers = CurrentTasMovie.Markers.Where(m => TasView.SelectedRows.Contains(m.Frame));
foreach (TasMovieMarker m in markers)
foreach (TasMovieMarker m in markers.ToList())
{
CurrentTasMovie.Markers.Remove(m);
}

Binary file not shown.