Skip to content

Commit

Permalink
Keep AppliedTimingFactor unchanged in Analysis phase to avoid wrong a…
Browse files Browse the repository at this point in the history
…dapation of total highlight-time.
  • Loading branch information
MerlinCooper committed Jun 6, 2020
1 parent c4d87d5 commit e10d366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Phases/AnalyseRace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void AnalyseRaceSituations(IEnumerable<DataSample> samples)
.TakeUntil(3.Seconds()).AfterReplayPaused();

samples = samples.AtSpeed(iReplaySpeedForAnalysis);
Settings.AppliedTimingFactor = 1.0 / iReplaySpeedForAnalysis;
//Settings.AppliedTimingFactor = 1.0 / iReplaySpeedForAnalysis;

overlayData.CapturedVersion = Assembly.GetExecutingAssembly().GetName().Version.ToString();

Expand Down

1 comment on commit e10d366

@MerlinCooper
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

closes #31

Please sign in to comment.