Also change branch numbers in piano roll

see #3112, fixes 965cbe615
This commit is contained in:
YoshiRulz 2022-02-10 02:15:00 +10:00
parent 965cbe615c
commit 71e84537e6
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ namespace BizHawk.Client.EmuHawk
int branchIndex = CurrentTasMovie.Branches.IndexOfFrame(index); int branchIndex = CurrentTasMovie.Branches.IndexOfFrame(index);
if (branchIndex != -1) if (branchIndex != -1)
{ {
text = branchIndex.ToString(); text = (branchIndex + 1).ToString();
} }
} }
else if (columnName == FrameColumnName) else if (columnName == FrameColumnName)