Skip to content

Commit

Permalink
Fixed loadless and total time being reversed (Oops)
Browse files Browse the repository at this point in the history
  • Loading branch information
milankarman committed May 16, 2021
1 parent d669452 commit e132975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Unload/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ private void btnCalcTimes_Click(object sender, RoutedEventArgs e)
CalculateTimes();
}

private string GetLoadlessTimeString()
private string GetTotalTimeString()
{
if (!IsValidFramedata())
{
Expand Down Expand Up @@ -377,7 +377,7 @@ private string GetLoadlessTimeString()
return $"{timeWithLoads.ToString(@"hh\:mm\:ss")}.{Math.Round(totalMilliseconds * 1000, 0)}";
}

private string GetTotalTimeString()
private string GetLoadlessTimeString()
{
if (!IsValidFramedata())
{
Expand Down

0 comments on commit e132975

Please sign in to comment.