Tastudio - pad frame column based on input log length

This commit is contained in:
adelikat 2014-09-18 00:51:16 +00:00
parent acacb8e126
commit 4d08822425
1 changed files with 2 additions and 16 deletions

View File

@ -174,25 +174,11 @@ namespace BizHawk.Client.EmuHawk
if (columnName == MarkerColumnName) if (columnName == MarkerColumnName)
{ {
if(Global.Emulator.Frame == index) // Do nothing
{
if(TasView.HorizontalOrientation)
{
//text = " V";
}
else
{
//text = ">";
}
}
else
{
text = string.Empty;
}
} }
else if (columnName == FrameColumnName) else if (columnName == FrameColumnName)
{ {
text = (index).ToString().PadLeft(5, '0'); text = (index).ToString().PadLeft(_currentTasMovie.InputLogLength.ToString().Length, '0');
} }
else else
{ {