Tastudio - pad frame column based on input log length
This commit is contained in:
parent
acacb8e126
commit
4d08822425
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue