tastudio: let's just report state count

will help to sort out possible decay bugs
This commit is contained in:
feos 2018-03-11 14:59:58 +03:00
parent 3932e5a025
commit 7162de1d3c
1 changed files with 2 additions and 2 deletions

View File

@ -807,7 +807,7 @@ namespace BizHawk.Client.EmuHawk
TasView.Refresh();
//SetSplicer();
SetSplicer();
CurrentTasMovie.FlushInputCache();
CurrentTasMovie.UseInputCache = false;
@ -940,7 +940,7 @@ namespace BizHawk.Client.EmuHawk
SplicerStatusLabel.Text =
"Selected: " + TasView.SelectedRows.Count() + " frame" +
(TasView.SelectedRows.Count() == 1 ? "" : "s") +
//", State count: " + CurrentTasMovie.TasStateManager.StateCount.ToString() +
", State count: " + CurrentTasMovie.TasStateManager.StateCount.ToString() +
", Clipboard: " + (_tasClipboard.Any() ? _tasClipboard.Count + " frame" +
(_tasClipboard.Count == 1 ? "" : "s") : "empty");
}