Start new session and other fixes

This commit is contained in:
HeshamTB 2018-12-21 18:44:48 +03:00
parent 5d7640c0f0
commit 2d5771beb8
2 changed files with 5 additions and 4 deletions

View File

@ -38,6 +38,7 @@ namespace OWTrack
InitializeComponent();
tr = new Tracker();
loadSave();
tr.StartNewSeission();
checkStatus();
update();
label4.Text = Version;
@ -108,7 +109,6 @@ namespace OWTrack
}
ExeTrackCheckBx.Checked = tr.settings.TrackOW;
SRCheckBx.Checked = tr.settings.TrackSR;
update();
}
private string askForGamePath()
@ -157,7 +157,7 @@ namespace OWTrack
ChangeInSR = tr.srDiff(),
dateTime = DateTime.Now
};
tr.AddMatch(match);
tr.GetCurrentSession().AddMatch(match);
}
#region Events

View File

@ -61,12 +61,13 @@ namespace OWTrack
public void StartNewSeission()
{
Session ses = new Session(startSR);
sessions.Add(ses);
//Re do SR input!!
}
public void AddMatch(Match match)
public Session GetCurrentSession()
{
sessions.Last().AddMatch(match);
return sessions.Last();
}
public bool owRunning()
{