You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Make "BoundedStatValuesSummary: end event appeared before the start event" non-fatal.
[CL 21500252 by ben woodhouse in ue5-main branch]
This commit is contained in:
+2
-1
@@ -133,7 +133,8 @@ namespace PerfSummaries
|
||||
}
|
||||
if (startFrame >= endFrame)
|
||||
{
|
||||
throw new Exception("BoundedStatValuesSummary: end event appeared before the start event");
|
||||
Console.WriteLine("Warning: BoundedStatValuesSummary: end event "+ endEvent + " appeared before the start event "+beginEvent);
|
||||
return;
|
||||
}
|
||||
endFrame = Math.Min(endFrame, csvStats.SampleCount - 1);
|
||||
startFrame = Math.Max(startFrame, 0);
|
||||
|
||||
Reference in New Issue
Block a user