Tastudio - fix TasSession loading, fixes #2063

This commit is contained in:
adelikat 2020-07-11 14:28:21 -05:00
parent cb575d36b4
commit 196934bd56
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@
public class TasSession : ITasSession
{
public int CurrentFrame { get; private set; }
public int CurrentBranch { get; private set; } = -1;
public int CurrentFrame { get; set; }
public int CurrentBranch { get; set; } = -1;
public void UpdateValues(int frame, int currentBranch)
{